欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

UML类图--类之间的关系

程序员文章站 2024-02-19 22:33:40
...

UML类图--类之间的关系

UML类图--类之间的关系

UML类图--类之间的关系

interface IFly{
	void fly();
}
interface ILanguage{
	void speak();
}

UML类图--类之间的关系

class Bird extends Animal{}

UML类图--类之间的关系

class WideGoose implements IFly{}

UML类图--类之间的关系

class Penguin extends Bird{
	private Climate climate;//在企鹅Penguin中,引用到气候Climate对象
}

UML类图--类之间的关系

class WideGooseAggregate{
	private WideGoose[] arrayWideGoose;//在雁群WideGooseAggregate类中,有大雁数组对象arrayWideGoose
}

UML类图--类之间的关系

class Bird {
	private Wing wing;
	
	public Bird(){
		wing = new Wing();
	}
}

UML类图--类之间的关系

abstract class Animal {
	public void Metabolism(Oxygen oxygen, Water water) {
	}
}

 

转载于:https://my.oschina.net/gAKey/blog/1536204