1

在下面的代码部分中,交换后的结果内存结构是什么?是否会因为它们交换了下面的内存地址而导致泄漏?会不会因为他们做了一个深拷贝?如果这段代码被困在一个类中并且我正在用一块动态内存交换一个工作缓冲区怎么办?

#include <iostream>
#include <vector>

int main()
{
    std::vector<std::string> * ptr_str_vec =
        new std::vector<std::string>();
    ptr_str_vec->push_back("Hello");

    std::vector<std::string> str_vec;
    str_vec.push_back("World");

    ptr_str_vec->swap(str_vec);

    delete ptr_str_vec;
    //What would be the resulting structures?

    return 0;
}

编辑:发布了稍微错误的代码。修复了错误。

4

3 回答 3

3

创建向量时,向量使用的底层连续数据块默认是从堆中创建的。在您的情况下,由于您没有提供分配器,因此使用默认分配器。

int main()
{
    std::vector<std::string> * ptr_str_vec =
        new std::vector<std::string>(); // #^&! *ptr_str_vec is allocated from heap. vector's data block is allocated from heap.
    ptr_str_vec->push_back("Hello");    // #^&! "hello" is copied onto heap block #1

    std::vector<std::string> str_vec;   // #^&! str_vec is allocated from stack. vector's data block is allocated from heap.
    str_vec.push_back("World");         // #^&! "world" is copied onto heap block #2

    ptr_str_vec->swap(str_vec);         // #^&! swap is fast O(1), as it is done by swapping block #1 and #2's address. No data copy is done during swap.

    delete ptr_str_vec;                 // #^&! delete ptr_str_vec as well as heap block #2.
    //What would be the resulting structures? /

    return 0;                           // #^&! delete str_vec as well as heap block #1
}
于 2013-07-17T20:02:02.603 回答
0

假设您已经熟悉swap,是否有任何理由您没有设置它,以便您可以测试输出以查看它自己做了什么?这将是确保您确切知道它在做什么以及您对它的使用是否合适的最快方法。

在这种情况下,生成的结构只是ptr_str_vec指向包含 a 的向量std::string("World")并且str_vec是包含 a 的向量std::string("Hello")。您的示例在回答您的问题时遇到了许多错误,特别是因为您在每个向量中只有一个元素(因此向量长度相等),并且因为元素的大小完全相同(因此向量占据大致相等内存段)。在整个项目的运行实例中,很可能这些条件都不成立。

于 2013-07-17T20:03:01.867 回答
0

每个向量中的值将被交换http://www.cplusplus.com/reference/vector/vector/swap/

我没有看到内存泄漏(除了你的程序在 main 结束时得到的那个,因为你没有删除你的指针),你的 ptr_str_vec 指针没有改变,只有它指向的向量内的数据发生了变化

于 2013-07-17T19:47:51.757 回答