這天大B問께A:“怎樣設計可復用的面向對象軟體?”
께A:“師兄你這是考我么?”
大B:“啥啊?我這是想看你在學校是不是真學到了東西。”
께A:“得得得,那我就說說吧!設計模式是一套被反覆使用、多數人知曉的、經過分類編目的、代碼設計經驗的總結。使用設計模式是為了可重用代碼、讓代碼更容易被他人理解、保證代碼可靠性。設計模式於己於他人於系統都是多贏的,設計模式使代碼編製真正工程꿨,設計模式是軟體工程的基石,如同大廈的一塊塊磚石一樣。”
大B:“我再考考你,用C++、Java、C#或VB.NET任意一種面向對象語言實現一個簡單程序。”
께A不到幾分鐘就給大B一個程序。
packagejava.blah;
importjava.blah.blahdy.BlahBlah;
publicclassBlahextendsSomeClass{
*
*classVar2documentationmentthathappenstobe
*morethanonelinelong
*/
privatestaticObjectclassVar2;
protectedintinstanceVar2;
privateObject[]instanceVar3;
*
*classVar2documentationmentthathappenstobe
*morethanonelinelong
*/
privatestaticObjectclassVar2;
protectedintinstanceVar2;
privateObject[]instanceVar3;
publicBlah(){
//……implementationgoeshere……
}
publicvoiddoSomething(){
//……implementationgoeshere……
}
publicvoiddoSomethingElse(ObjectsomeParam){
//……implementationgoeshere……
}
}