std ::将一个向量移动到另一个向量,地址未更新

时间:2015-09-17 21:53:41

标签: c++ vector stl move

我想在没有副本的情况下将一个矢量移动到另一个矢量。我找到了STL vector: Moving all elements of a vector。我想测试一下,所以我在下面编写了一个简单的例子。

C ++编译器版本:

g++ 5.1.0 on (Ubuntu 5.1.0-0ubuntu11~14.04.1)

我正在使用以下命令进行编译:

g++ -std=c++14 test2.cpp -o test2

以下是我写的代码:

#include <iostream>
#include <memory>
#include <string>
#include <vector>

using namespace std;

int main(int argc, char* argv[])
{
  vector<uint8_t> v0 = { 'h', 'e', 'l', 'l', 'o' };
  vector<uint8_t> v1 = {};

  // pointer to the data
  // portion of the vector
  uint8_t* p0 = v0.data();
  uint8_t* p1 = v1.data();

  // for stdout
  string s0(v0.begin(), v0.end());
  string s1(v1.begin(), v1.end());

  cout << "s0='" << s0 << "' addr=" << &p0 << endl;
  cout << "s1='" << s1 << "' addr=" << &p1 <<endl;

  /// here i would think the pointer to the data in v1
  /// would point to v0 and the pointer to the data in v0
  /// would be something else.
  v1 = move(v0);

  p0 = v0.data();
  p1 = v1.data();

  s0.assign(v0.begin(), v0.end());
  s1.assign(v1.begin(), v1.end());

  cout << "s0='" << s0 << "' addr=" << &p0 << endl;
  cout << "s1='" << s1 << "' addr=" << &p1 << endl;  
}

这是输出:

s0='hello' addr=0x7fff33f1e8d0
s1='' addr=0x7fff33f1e8d8
s0='' addr=0x7fff33f1e8d0
s1='hello' addr=0x7fff33f1e8d8

如果看到输出,则地址根本没有改变。我认为p1的地址会包含p0的地址,而p0会指向其他地址。有谁知道为什么地址没有改变?我想,我想知道编译器是否真的以副本作为捷径实现了这一点。

2 个答案:

答案 0 :(得分:4)

您正在打印指针的地址,而不是它们指向的地址。

打印p0p1而不是&p0&p1

答案 1 :(得分:3)

你想:

cout << "s0='" << s0 << "' addr=" << (void*) p0 << endl;
cout << "s1='" << s1 << "' addr=" << (void*) p1 << endl;

而不是:

cout << "s0='" << s0 << "' addr=" << &p0 << endl;
cout << "s1='" << s1 << "' addr=" << &p1 <<endl;