橋接模式C++實現

橋接模式應該用場景在於一個接口,實現類有多個,動態綁定實現類。比如手錶,錶帶作爲藉口,可有不同品牌、形狀、顏色的錶帶。 實現接口:   #pragma once class IImplementor { public:     IImplementor(void);     virtual ~IImplementor(void);     virtual void Operation(void) 
相關文章
相關標籤/搜索