C++核心准则C102-109:容器的基本要求

C.102: Give a container move operations

C.102:为容器实现移动操作‍

 

Reason(原因)

Containers tend to get large; without a move constructor and a copy constructor an object can be expensive to move around, thus tempting people to pass pointers to it around and getting into resource management problems.

容器会变得越来越大;如果对象没有移动构造函数和拷贝构造函数,移动它的成本就会很高,其结果就是导致人们更愿意传递指向对象的指针从而引起资源管理方面的问题。

Example(示例)

Sorted_vector<int> read_sorted(istream& is)
{
    vector<int> v;
    cin >> v;   // assume we have a read operation for vectors
    Sorted_vector<int> sv = v;  // sorts
    return sv;
}

A user can reasonably assume that returning a standard-like container is cheap.

用户可以合理地假设返回和标准库类似的容器是低成本的。

Enforcement(实施建议)

???

C.103: Give a container an initializer list constructor

C.103:为容器实现一个初始化类别形式的构造函数‍

Reason(原因)

People expect to be able to initialize a container with a set of values. Familiarity.

人们希望可以通过一组值来初始化容易。这是友好性方面的考虑。

Example(示例)

Sorted_vector<int> sv {1, 3, -1, 7, 0, 0}; 
// Sorted_vector sorts elements as needed

Enforcement(实施建议)

???

C.104: Give a container a default constructor that sets it to empty

C.104:为容器实现一个将容器初始化为空的默认构造函数‍

Reason(原因)

To make it Regular.

保持容器的常规性。

Example(示例)

vector<Sorted_sequence<string>> vs(100);    // 100 Sorted_sequences each with the value ""

Enforcement(实施建议)

???

C.109: If a resource handle has pointer semantics, provide * and ->

C.109:如果资源句柄包含指针语义,提供*和->运算符

Reason(原因)

That's what is expected from pointers. Familiarity.

这是来自指针类型的期望。友好型方面的考虑。

Example(示例)

???

Enforcement(实施建议)

???

原文链接

https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c102-give-a-container-move-operations


觉得本文有帮助?欢迎点赞并分享给更多的人。

阅读更多更新文章,请关注微信公众号【面向对象思考】

发布了410 篇原创文章 · 获赞 677 · 访问量 31万+

猜你喜欢

转载自blog.csdn.net/craftsman1970/article/details/105031914