编码:

// test2.cpp

#include <vector>
#include <iostream>

struct test_class
{
    test_class() = default;

    test_class(const test_class& t)
    {
        std::cout << "Copied" << std::endl;
    }
};

int main()
{
    test_class a;
    std::vector<test_class> v;

    for (int i = 0; i < 5; ++i) {
        v.push_back(a);
        std::cout << std::endl;
    }
}

行为:
$ g++ --version | grep g++
g++ (Ubuntu/Linaro 4.7.2-2ubuntu1) 4.7.2
$ g++ -std=c++11 test2.cpp
$ ./a.out
Copied

Copied
Copied

Copied
Copied
Copied

Copied

Copied
Copied
Copied
Copied
Copied

每个push_back执行“未定义”的副本数(其中只能执行一个副本)。

这里发生了什么?

最佳答案

vector 像数组一样分配连续的内存。如果内存末尾没有更多空间,则必须重新分配整个 vector 。之后,它将元素从旧位置复制到新位置并删除旧位置。

您可以将其初始化为能够容纳至少5个元素,因此在示例中将没有内存分配和复制:

std::vector<test_class> v(5);

10-04 15:04