這篇文章主要介紹“C++中怎么使用非模板核心實現(xiàn)提供穩(wěn)定的ABI接口”,在日常操作中,相信很多人在C++中怎么使用非模板核心實現(xiàn)提供穩(wěn)定的ABI接口問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++中怎么使用非模板核心實現(xiàn)提供穩(wěn)定的ABI接口”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
創(chuàng)新互聯(lián)自2013年起,先為太和等服務(wù)建站,太和等地企業(yè),進行企業(yè)商務(wù)咨詢服務(wù)。為太和企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
T.84:使用非模板核心實現(xiàn)提供穩(wěn)定的ABI接口
Improve stability of code. Avoid code bloat.
提高代碼的穩(wěn)定性。避免代碼膨脹。
Example(示例)
It could be a base class:
它可以作為基類存在:
struct Link_base { // stable
Link_base* suc;
Link_base* pre;
};
template // templated wrapper to add type safety
struct Link : Link_base {
T val;
};
struct List_base {
Link_base* first; // first element (if any)
int sz; // number of elements
void add_front(Link_base* p);
// ...
};
template
class List : List_base {
public:
void put_front(const T& e) { add_front(new Link{e}); } // implicit cast to Link_base
T& front() { static_cast*>(first).val; } // explicit cast back to Link
// ...
};
List li;
List ls;
Now there is only one copy of the operations linking and unlinking elements of a List. The Link and List classes do nothing but type manipulation.
(雖然例示了兩個List類,)對于List的關(guān)聯(lián)和非關(guān)聯(lián)元素來講,只有一套操作(函數(shù))的拷貝。Link和List除了類型操作之外不做任何事。
Instead of using a separate "base" type, another common technique is to specialize for void or void* and have the general template for T be just the safely-encapsulated casts to and from the core void implementation.
除了使用獨立的“基礎(chǔ)”類型,另外一個通用技術(shù)是定義基于void和void*類型的核心實現(xiàn)并準備一個目的僅限于安全地封裝從或到void核心實現(xiàn)進行轉(zhuǎn)換的通用模板類。
Alternative: Use a Pimpl implementation.
其他選項:使用指向?qū)崿F(xiàn)的指針技術(shù)來實現(xiàn)。
到此,關(guān)于“C++中怎么使用非模板核心實現(xiàn)提供穩(wěn)定的ABI接口”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
網(wǎng)站題目:C++中怎么使用非模板核心實現(xiàn)提供穩(wěn)定的ABI接口
文章鏈接:http://weahome.cn/article/jphggg.html