qt中如何使用std::cout
时间: 2024-05-03 13:22:10 浏览: 116
书中的 std::thread
在Qt中使用std::cout需要包含iostream头文件,并使用命名空间std。
示例代码:
```cpp
#include <iostream>
void foo() {
std::cout << "Hello, world!" << std::endl;
}
int main(int argc, char *argv[]) {
foo();
return 0;
}
```
输出结果:
```
Hello, world!
```
注意:在Qt Creator中运行控制台应用程序时,需要在Run Settings中将Run in terminal选项勾选上,才能看到输出结果。
阅读全文