您好,登錄后才能下訂單哦!
C++中怎么使用接口,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
首先我們需要一些宏:
// // Interfaces.h // #define Interface class #define DeclareInterface(name) Interface name { \ public: \ virtual ~name() {} #define DeclareBasedInterface(name, base) class name : public base { \ public: \ virtual ~name() {} #define EndInterface }; #define implements public
有了這些宏,我們就可以這樣定義我們的接口了:
// // IBar.h // DeclareInterface(IBar) virtual int GetBarData() const = 0; virtual void SetBarData(int nData) = 0; EndInterface
是不是很像MFC消息映射那些宏啊,熟悉MFC的朋友一定不陌生。現在我們可以像下面這樣來實現C++使用接口這一功能:
// // Foo.h // #include "BasicFoo.h" #include "IBar.h" class Foo : public BasicFoo, implements IBar { // Construction & Destruction public: Foo(int x) : BasicFoo(x) { } ~Foo(); // IBar implementation public: virtual int GetBarData() const { // add your code here } virtual void SetBarData(int nData) { // add your code here } };
關于C++中怎么使用接口問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。