public
inte***ce
mobilephone
class
telephonemobilephone
implements
mobilephone
}/**
* 具體的手機物件
*/class
concretemobilephone
implements
mobilephone
@override
public string function
() }
/** * 增加簡訊功能
*/class
messagemobilephone
extends
concretemobilephone
@override
public string function
() public string message()
}/**
* 增加**功能
*/class
musicmobilephone
extends
concretemobilephone
@override
public string function
() public string music()
}/**
*/class
videomobilephone
extends
concretemobilephone
@override
public string function
() public string playvideo()
}/**
* 增加聊天功能
*/class
chatmobilephone
extends
concretemobilephone
@override
public string function
() public string chat()
}
測試**
telephonemobilephone tphone = new telephonemobilephone();
system.out
.println(tphone.function());
system.out
.println("《-------新增功能--------》");
messagemobilephone mphone = new messagemobilephone(tphone);
system.out
.println(mphone.function());
system.out
.println("《-------新增功能--------》");
musicmobilephone musicmobilephone = new musicmobilephone(tphone);
system.out
.println(musicmobilephone.function());
system.out
.println("《-------新增功能--------》");
videomobilephone vphone = new videomobilephone(tphone);
system.out
.println(vphone.function());
system.out
.println("《-------新增功能--------》");
chatmobilephone cphone = new chatmobilephone(tphone);
system.out
.println(cphone.function());
實現效果
將測試**裡面的引數稍微的切換一些試試看,會有什麼樣的效果
telephonemobilephone tphone = new telephonemobilephone();
system.out
.println(tphone.function());
system.out
.println("《-------新增功能--------》");
messagemobilephone mphone = new messagemobilephone(tphone);
system.out
.println(mphone.function());
system.out
.println("《-------新增功能--------》");
musicmobilephone musicmobilephone = new musicmobilephone(mphone);
system.out
.println(musicmobilephone.function());
system.out
.println("《-------新增功能--------》");
videomobilephone vphone = new videomobilephone(musicmobilephone);
system.out
.println(vphone.function());
system.out
.println("《-------新增功能--------》");
chatmobilephone cphone = new chatmobilephone(vphone);
system.out
.println(cphone.function());
執行效果圖
其實我們的測試**還可以再次稍微的切換一下
telephonemobilephone tphone = new telephonemobilephone();
system.out.println(tphone.function());
system.out.println("《-------新增功能--------》");
chatmobilephone cphone = new chatmobilephone(new messagemobilephone(new musicmobilephone(new videomobilephone(tphone))));
system.out.println(cphone.function());
設計模式 裝飾模式
裝飾模式,動態地給乙個物件新增一些額外的職責,就增加功能來說,裝飾模式比生成子類更為靈活。m 超級瑪麗 普通繼承模式實現 a 發鏢 能組合出七種功能 m1 a m4 a b b 變身 m2 b m5 a c c 無敵 m3 c m6 b c m7 a b m m1 a b 組合方法 new m2 m...
設計模式 裝飾模式
剛看了看設計模式,真是費了好多的腦細胞。想著想著就到了食堂。o o哈!正是長身體的時候 大神勿噴 一定要多吃點。於是我打了乙份公尺飯,然後又端著盛公尺飯的盤子買了乙份菜 看著還不是很夠,就又端著這個盤子買了一條最愛吃的魚。裝飾模式!五一要來了。回家轉轉,沒有小外甥的玩具怎麼行。於是我去超市,推著購物...
設計模式 裝飾模式
複習設計模式 裝飾模式 裝飾模式 在不修改已經存在的類的情況下,動態的新增新的功能,實現即插即用,開放關閉原則 public inte ce man public class batman implements man override public void killmonster public ...