您好,登錄后才能下訂單哦!
這篇文章主要介紹“C++中怎么使用非模板核心實現提供穩定的ABI接口”,在日常操作中,相信很多人在C++中怎么使用非模板核心實現提供穩定的ABI接口問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++中怎么使用非模板核心實現提供穩定的ABI接口”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
T.84:使用非模板核心實現提供穩定的ABI接口
Improve stability of code. Avoid code bloat.
提高代碼的穩定性。避免代碼膨脹。
Example(示例)
It could be a base class:
它可以作為基類存在:
struct Link_base { // stable
Link_base* suc;
Link_base* pre;
};
template<typename T> // 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<typename T>
class List : List_base {
public:
void put_front(const T& e) { add_front(new Link<T>{e}); } // implicit cast to Link_base
T& front() { static_cast<Link<T>*>(first).val; } // explicit cast back to Link<T>
// ...
};
List<int> li;
List<string> 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的關聯和非關聯元素來講,只有一套操作(函數)的拷貝。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.
除了使用獨立的“基礎”類型,另外一個通用技術是定義基于void和void*類型的核心實現并準備一個目的僅限于安全地封裝從或到void核心實現進行轉換的通用模板類。
Alternative: Use a Pimpl implementation.
其他選項:使用指向實現的指針技術來實現。
到此,關于“C++中怎么使用非模板核心實現提供穩定的ABI接口”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。