91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中怎么使用非模板核心實現提供穩定的ABI接口

發布時間:2021-11-24 10:50:28 來源:億速云 閱讀:133 作者:iii 欄目:大數據

這篇文章主要介紹“C++中怎么使用非模板核心實現提供穩定的ABI接口”,在日常操作中,相信很多人在C++中怎么使用非模板核心實現提供穩定的ABI接口問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++中怎么使用非模板核心實現提供穩定的ABI接口”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

T.84:使用非模板核心實現提供穩定的ABI接口

Reason(原因)

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接口”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

扶绥县| 镇远县| 清水县| 紫云| 嵊州市| 泰州市| 汾阳市| 巫溪县| 张家港市| 合阳县| 平乡县| 樟树市| 澜沧| 屯留县| 武义县| 黑水县| 馆陶县| 宿迁市| 嵊泗县| 广德县| 翁牛特旗| 卢氏县| 淮南市| 威海市| 靖江市| 衡水市| 肃南| 桐城市| 盘山县| 洛宁县| 苏尼特左旗| 崇文区| 通海县| 明水县| 区。| 政和县| 乐都县| 蚌埠市| 改则县| 安福县| 嘉黎县|