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

溫馨提示×

溫馨提示×

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

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

C++中怎么使用匿名聯合體實現附帶標簽的聯合體

發布時間:2021-11-18 09:23:26 來源:億速云 閱讀:114 作者:iii 欄目:大數據

這篇文章主要介紹“C++中怎么使用匿名聯合體實現附帶標簽的聯合體”,在日常操作中,相信很多人在C++中怎么使用匿名聯合體實現附帶標簽的聯合體問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++中怎么使用匿名聯合體實現附帶標簽的聯合體”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

Reason(原因)

A well-designed tagged union is type safe. An anonymous union simplifies the definition of a class with a (tag, union) pair.

良好設計的命名聯合體是類型安全的。無名聯合體簡化了包含(標簽,聯合體)對的類的設計。

Example(示例)

This example is mostly borrowed from TC++PL4 pp216-218. You can look there for an explanation.

這段示例代碼主要借用自TC++PL4的216頁到218頁(中文版:C++程序設計語言(原書第四版)p186-p188)。你可以查看該書中的解釋。

The code is somewhat elaborate. Handling a type with user-defined assignment and destructor is tricky. Saving programmers from having to write such code is one reason for including variant in the standard.

這段代碼有些復雜。使用用戶定義的賦值和析構函數處理一種類型不是那么容易。把程序員從必須編寫這樣的代碼的情況中解救出來是在標準庫中增加variant的原因之一。

class Value { // two alternative representations represented as a union
private:
   enum class Tag { number, text };
   Tag type; // discriminant

   union { // representation (note: anonymous union)
       int i;
       string s; // string has default constructor, copy operations, and destructor
   };
public:
   struct Bad_entry { }; // used for exceptions

   ~Value();
   Value& operator=(const Value&);   // necessary because of the string variant
   Value(const Value&);
   // ...
   int number() const;
   string text() const;

   void set_number(int n);
   void set_text(const string&);
   // ...
};

int Value::number() const
{
   if (type != Tag::number) throw Bad_entry{};
   return i;
}

string Value::text() const
{
   if (type != Tag::text) throw Bad_entry{};
   return s;
}

void Value::set_number(int n)
{
   if (type == Tag::text) {
       s.~string();      // explicitly destroy string
       type = Tag::number;
   }
   i = n;
}

void Value::set_text(const string& ss)
{
   if (type == Tag::text)
       s = ss;
   else {
       new(&s) string{ss};   // placement new: explicitly construct string
       type = Tag::text;
   }
}

Value& Value::operator=(const Value& e)   // necessary because of the string variant
{
   if (type == Tag::text && e.type == Tag::text) {
       s = e.s;    // usual string assignment
       return *this;
   }

   if (type == Tag::text) s.~string(); // explicit destroy

   switch (e.type) {
   case Tag::number:
       i = e.i;
       break;
   case Tag::text:
       new(&s) string(e.s);   // placement new: explicit construct
   }

   type = e.type;
   return *this;
}

Value::~Value()
{
   if (type == Tag::text) s.~string(); // explicit destroy
}

到此,關于“C++中怎么使用匿名聯合體實現附帶標簽的聯合體”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

c++
AI

大宁县| 石景山区| 涿鹿县| 抚州市| 始兴县| 马尔康县| 紫阳县| 聂荣县| 中江县| 兖州市| 普宁市| 安泽县| 乡城县| 朝阳县| 雷州市| 台北市| 池州市| 盐津县| 中超| 泰安市| 建始县| 广州市| 红河县| 聂拉木县| 武强县| 石狮市| 芜湖县| 蕉岭县| 仙桃市| 绥棱县| 昔阳县| 合阳县| 武定县| 自治县| 织金县| 颍上县| 托克托县| 林西县| 赞皇县| 韶关市| 瑞昌市|