IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> Resource And Memory -> 正文阅读

[C++知识库]Resource And Memory

0.导读

? Introduction

? Almost Containers(拟容器)
array ; bitset ; vector<bool> ; Tuples

? Resource Management Pointers
unique_ptr ; shared_ptr ; weak_ptr

? Allocators
The Default Allocator; 
Allocator Traits; 
Pointer Traits; 
Scoped Allocators

? The Garbage Collection Interface

? Uninitialized Memory
Temporary Buffers; raw_storage_iterator

? Advice

1.Introduction

The STL (Chapter 31, Chapter 32, Chapter 33) is the most highly structured and 
general part standard-library facilities for the management and manipulation 
of data. This chapter presents facilitiesthat are more specialized or deal with 
raw memory (as opposed to typed objects).

STL(第31章、第32章、第33章)是标准库中最具高度结构化和部分用于管理和操作数据的通用性工具。
本章将介绍更特殊化的或处理原始内存的工具(与类型化对象相反).

2."almost containers"

The standard library provides several containers that don’t fit perfectly into the 
STL framework (§31.4, §32.2, §33.1). Examples are built-in arrays, array , and 
string. I sometimes refer to those as "almost containers" (§31.4), but that is 
not quite fair: they hold elements, so they are containers,but each has 
restrictions or added facilities that make them awkward in the context of the 
STL.Describing them separately also simplifies the description of the STL.

标准库提供了几个不完全适合STL框架的容器(§31.4, §32.2, §33.1). 
例如内置数组、数组和字符串。我有时把它们称为“几乎是容器”(§31.4),
但这不太公平: 它们包含元素,所以它们是容器,但每一个都有限制或增加的
方法,这使得它们在STL环境中显得尴尬。单独描述它们也简化了STL的描述。
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?Almost Containers
? ? T[N]Built-in array: a fixed-size continuously allocated sequence of N elements of type T ; implicitly converts to a T?

内置阵列:一个固定大小的连续分配的N序列

T型元素;隐式转换为T?

array<T,N>A fixed-size continuously allocated sequence of N elements of type T ; like the built-in array, but with most problems solved

N个元素的固定大小连续分配序列

T型;与内置阵列类似,但大多数问题都已解决

bitset<N>A fixed-size sequence of N bitsN位的固定大小序列
vector<bool>?A sequence of bits compactly stored in a specialization of vector在向量的特殊化中紧凑地存储的位序列
pair<T,U>Two elements of types T and UT型和U型两种元素
tuple<T...>A sequence of an arbitrary number of elements of arbitrary types任意数目的任意类型元素的序列
basic_string<C>?任意类型的任意数量的元素序列C类型的字符序列;提供字符串操作任意类型的任意数量的元素序列C类型的字符序列;提供字符串操作
valarray<T>An array of numeric values of type T ; provides numeric operationsT型数值数组;提供数字操作
Why does the standard library provide so many containers? They serve common 
but different (often overlapping) needs. If the standard library didn’t provide
them, many people would have to design and implement their own. For example:
? pair and tuple are heterogeneous; all other containers are homogeneous 
(all elements are of the same type).
? array , vector , and tuple elements are contiguously allocated; 
forward_list and map are linked structures.
? bitset and vector<bool> hold bits and access them through proxy objects; 
all other standardlibrary containers can hold a variety of types and access 
elements directly.
? basic_string requires its elements to be some form of character and to 
provide string manipulation, such as concatenation and locale-sensitive 
operations (Chapter 39) and valarray requires its elements to be numbers 
and to provide numerical operations.


All of these containers can be seen as providing specialized services needed 
by large communities of programmers. No single container could serve all of 
these needs because some needs are contradictory, for example,"ability to grow"
vs. "guaranteed to be allocated in a fixed location," and
"elements do not move when elements are added" vs. "contiguously allocated." 
Furthermore, a very general container would imply overhead deemed unacceptable 
for individual containers.


为什么标准库提供这么多容器?他们提供普通的服务但需求不同(往往重叠),如果标准库没有提供
很多人将不得不设计和实现他们自己的. 例如:
? 成对和元组是异质的;所有其他容器都是同质的(所有元件均为同一类型);
? array、vector和tuple是连续分配的,forward_list和map是链接结构;
? bitset和vector<bool> 含有比特们,并且通过代理对象访问这些比特,所有其他标准库容器都
可以容纳各种类型和访问权限并直接使用元素.
? basic_string要求其元素是某种形式的字符,并且提供字符串操作,例如连接和区分区域设置操
作(第39章),valarray要求其元素为数字并提供数字运算.


所有这些容器都可以被视为大量程序员需要的专门话的服务. 没有一个容器可以应付所有的这些需
求,因为有些需求之间是相互矛盾的,例如"增长能力"vs"保证在固定点分配",以及"元素添加"与"连
续分配"时,元素不会移动此外,一个非常通用的集装箱将意味着单个集装箱不可接受的间接费用.

  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2022-02-28 15:10:05  更:2022-02-28 15:12:19 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 7:15:56-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码