std::cout 打印 std::string
时间: 2023-11-28 21:46:14 浏览: 80
C/C++中关于std::string的compare陷阱示例详解
5星 · 资源好评率100%
可以使用std::cout打印std::string,以下是一个例子:
```cpp
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, world!";
std::cout << str << std::endl; // 输出:Hello, world!
return 0;
}
```
阅读全文