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

溫馨提示×

溫馨提示×

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

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

C++?Boost?Container庫有哪些功能

發布時間:2022-11-07 09:20:38 來源:億速云 閱讀:169 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“C++ Boost Container庫有哪些功能”,內容詳細,步驟清晰,細節處理妥當,希望這篇“C++ Boost Container庫有哪些功能”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

一、關于Boost.Container

Boost.Container

Boost.Container 是一個 Boost 庫,提供與標準庫相同的容器。 Boost.Container 專注于額外的靈活性。例如,這個庫中的所有容器都可以在共享內存中與 Boost.Interprocess 一起使用——這對于標準庫中的容器并不總是可行的。

Boost.Container 提供了額外的優勢:

  • 容器的接口類似于 C++11 標準庫中容器的接口。例如,它們提供諸如 emplace_back() 之類的成員函數,您可以在 C++98 程序中使用它,即使它直到 C++11 才被添加到標準庫中。

  • 借助 boost::container::slist 或 boost::container::stable_vector,Boost.Container 提供了標準庫不提供的容器。

  • 該實現與平臺無關。容器在任何地方的行為都相同。您無需擔心標準庫實現之間可能存在的差異。

  • Boost.Container 中的容器支持不完整的類型,可用于定義遞歸容器。

二、Boost.Container示例

示例 20.1 說明了不完整的類型。

注意

本章中的示例無法使用 Visual C++ 2013 和 Boost 1.55.0 編譯。此錯誤在工單 9332 中進行了描述。它已在 Boost 1.56.0 中修復。

示例 20.1。帶有 Boost.Container 的遞歸容器

#include <boost/container/vector.hpp>
using namespace boost::container;
struct animal
{
  vector<animal> children;
};
int main()
{
  animal parent, child1, child2;
  parent.children.push_back(child1);
  parent.children.push_back(child2);
}

類動物有一個類型為 boost::container::vector<animal> 的成員變量 children。 boost::container::vector 在頭文件 boost/container/vector.hpp 中定義。因此,成員變量children 的類型基于定義變量children 的類animal。在這一點上,還沒有完全定義動物。雖然該標準不要求標準庫中的容器支持不完整類型,但 Boost.Container 明確支持遞歸容器。標準庫定義的容器是否可以遞歸使用取決于實現。

示例 20.2。使用 boost::container::stable_vector

#include <boost/container/stable_vector.hpp>
#include <iostream>
using namespace boost::container;
int main()
{
  stable_vector<int> v(2, 1);
  int &i = v[1];
  v.erase(v.begin());
  std::cout << i << '\n';
}

除了標準庫中眾所周知的容器之外,Boost.Container 還提供容器。示例 20.2 引入了容器 boost::container::stable_vector,其行為類似于 std::vector,除了如果 boost::container::stable_vector 更改,所有迭代器和對現有元素的引用仍然有效。這是可能的,因為元素沒有連續存儲在 boost::container::stable_vector 中。即使元素沒有彼此相鄰存儲在內存中,仍然可以使用索引訪問元素。

Boost.Container 保證示例 20.2 中的引用 i 在向量中的第一個元素被擦除時仍然有效。該示例顯示 1。

請注意,boost::container::stable_vector 和該庫中的其他容器都不支持 C++11 初始化列表。在示例 20.2 中,v 被初始化為兩個元素都設置為 1。

boost::container::stable_vector 在 boost/container/stable_vector.hpp 中定義。

Boost.Container 提供的其他容器是 boost::container::flat_set、boost::container::flat_map、boost::container::slist 和 boost::container::static_vector:

  • boost::container::flat_set 和 boost::container::flat_map 類似于 std::set 和 std::map。然而,它們被實現為排序向量,而不是樹。這允許更快的查找和迭代,但插入和刪除元素的成本更高。

  • 這兩個容器在頭文件 boost/container/flat_set.hpp 和 boost/container/flat_map.hpp 中定義。

  • boost::container::slist 是一個單鏈表。它類似于使用 C++11 添加到標準庫的 std::forward_list。

  • boost::container::slist 提供了一個成員函數 size(),它在 std::forward_list 中沒有。

  • boost::container::slist 在 boost/container/slist.hpp 中定義。

  • boost::container::static_vector 將 std::array 等元素直接存儲在容器中。與 std::array 一樣,容器具有恒定的容量,盡管容量并沒有說明元素的數量。成員函數 push_back()、pop_back()、insert() 和erase() 可用于插入或刪除元素。在這方面, boost::container::static_vector 類似于 std::vector。成員函數 size() 返回容器中當前存儲元素的數量。

  • 容量是恒定的,但可以使用 resize() 更改。 push_back() 不會改變容量。僅當容量大于當前存儲的元素數量時,您才可以使用 push_back() 添加元素。否則,push_back() 會拋出 std::bad_alloc 類型的異常。

boost::container::static_vector 在 boost/container/static_vector.hpp 中定義。

讀到這里,這篇“C++ Boost Container庫有哪些功能”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

c++
AI

上饶县| 长宁县| 正阳县| 石首市| 武山县| 娱乐| 武汉市| 东宁县| 门头沟区| 红河县| 深泽县| 英山县| 芒康县| 隆尧县| 明溪县| 濮阳市| 罗平县| 类乌齐县| 苏尼特左旗| 邯郸市| 武乡县| 镇江市| 陈巴尔虎旗| 通山县| 定陶县| 永修县| 平山县| 门源| 太谷县| 耿马| 乌什县| 宣汉县| 罗田县| 瑞昌市| 息烽县| 兰西县| 苗栗市| 洪湖市| 贡觉县| 双辽市| 田阳县|