Appreciate, respect and accept it, don't take it for granted

類別的關係

2016-12-28

從組成類別的結構開始,有兩大主體:屬性(instance variable, attribute)和操作(method, operation)。

因此,類別和類別之間接合的地方可能會出現在屬性或者操作當中。

出現在屬性

1
2
3
4
public class Car{
private Driver driver;
private Tire[] tires;
}

Car和Driver有關聯關係。Car和Tire有聚合關係。

出現在操作

因為操作的本體其實是函式(function),函式的結構包含帶入參數函式本體,所以帶入參數可能是其他的類別物件;函式本體可能包含宣告其他類別物件的區域變數或是直接使用其他類別物件的static function。以上皆代表類別A呼叫了類別B的操作可能產生的情形。

帶入參數

1
2
3
4
5
6
7
public class KFC{

public Chicken makeChicken( Meat m){
m.disinfect();
...
}
}

函式本體-區域變數

1
2
3
4
5
6
7
8
9
public class KFC{

public void preProcess(){

Oil oil = new Oil();
oil.fry( );
...
}
}

函式本體-static method

1
2
3
4
5
6
7
8
9
public class KFC{

public void postProcess(){

// clean is a static function
CleanMachine.clean();
...
}
}

其他

在Java中,一般化用extends;具體化用implements

總結

類別的關係總共有五種,其中透過類別屬性傳遞資料的關係為關聯聚合以及組合。透過類別操作傳遞資料的關係為相依。其他為一般化具體化

Ref

  1. UML物件導向系統分析與設計[第二版] / 游峰碩
  2. BGP - Part1: Software design principles for Agile 敏捷 軟體設計原則 / James Hsieh

Blog comments powered by Disqus