gpt4 book ai didi

c++ - 使用函数更改 std::string 的内容

转载 作者:行者123 更新时间:2023-11-30 04:15:12 25 4
gpt4 key购买 nike

<分区>

我觉得这个答案会快速而简单,但我现在似乎无法弄明白。

 #include <string>
#include <iostream>
using namespace std;
void change_thing (string x) {
x="not thing";
}
int main() {
string maybe_thing;
maybe_thing="thing";
change_thing(maybe_thing);
cout << maybe_thing << endl;
return 0;
}

希望 maybe_thing 在打印时成为“not thing”。我已经尝试了很多不同的指针策略,但似乎没有任何效果(我很可能只是做错了;无论如何我对指针的了解都不完整,因为我是 c++ 的新手)。

提前致谢!

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com