gpt4 book ai didi

c++ - cout 和字符串连接

转载 作者:太空宇宙 更新时间:2023-11-03 10:40:26 27 4
gpt4 key购买 nike

我刚刚复习了我的 C++。我试着这样做:

#include <iostream>

using std::cout;
using std::endl;

void printStuff(int x);

int main() {
printStuff(10);
return 0;
}

void printStuff(int x) {
cout << "My favorite number is " + x << endl;
}

问题发生在 printStuff 函数中。当我运行它时,输出中省略了“My favorite number is”的前 10 个字符。输出是“e number is”。该号码甚至没有显示。

解决这个问题的方法是

void printStuff(int x) {
cout << "My favorite number is " << x << endl;
}

我想知道计算机/编译器在幕后做了什么。

最佳答案

在这种情况下,+ 重载运算符不会连接任何字符串,因为 x 是一个整数。在这种情况下,输出按右值次移动。所以不会打印前 10 个字符。检查this引用。

如果你会写

cout << "My favorite number is " + std::to_string(x) << endl;

它会起作用

关于c++ - cout 和字符串连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39759556/

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