使用staruml学习画类图
Posted 杨逍红2014551608
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用staruml学习画类图相关的知识,希望对你有一定的参考价值。
//这是startuml 把uml 转换成的java代码:
public class Circle implements Ishape { private double _radius; public double getArea() { } public double getArea(); } public class Pizza implements Ishape { private double price; private Ishape _shape; public double getprice() { } public Ishape getshape() { } public double Pizza() { } public double getArea(); } public class Rectangle implements Ishape { private double _width; private Object _height; public double getArea() { } public double getArea(); } public interface Ishape { public abstract double getArea(); }
下面是关系图:
以上是关于使用staruml学习画类图的主要内容,如果未能解决你的问题,请参考以下文章