为什么字符串的 move() 会更改内存中的基础数据位置?

Why move() of string changes underlying data position in memory?

我试图通过 string_view 将一些字符串保存到第二个数据容器,但 运行 遇到了一些困难。 事实证明,字符串在 move() 之后改变了它的底层数据存储。

我的问题是,为什么会这样?

示例:

#include <iostream>
#include <string>
#include <string_view>
using namespace std;

int main() {
    string a_str = "abc";
    cout << "a_str data pointer: " << (void *) a_str.data() << endl;

    string_view a_sv = a_str;

    string b_str = move(a_str);
    cout << "b_str data pointer: " << (void *) b_str.data() << endl;
    cout << "a_sv: " << a_sv << endl;
}

输出:

a_str data pointer: 0x63fdf0
b_str data pointer: 0x63fdc0
a_sv:  bc

感谢您的回复!

您看到的是 short string optimization 的结果。从最基本的意义上讲,string对象中有一个数组,用于保存对小字符串的new调用。由于数组是 class 的成员,它必须在每个对象中都有自己的地址,并且当您移动数组中的字符串时,会发生复制。

字符串“abc”足够短,可以进行短字符串优化。参见 What are the mechanics of short string optimization in libc++?

如果将其更改为更长的字符串,您将看到相同的地址。