std::string打印格式
时间: 2023-12-15 15:03:43 浏览: 125
打印格式
可以使用以下两种方法打印std::string字符串:
1.使用c_str()函数将std::string转换为const char*类型,然后使用printf或cout进行输出。
```c++
std::string str = "Hello World!";
printf("%s\n", str.c_str()); // 输出:Hello World!
```
2.使用QDebug进行输出。
```c++
#include <QDebug>
std::string str = "Hello World!";
qDebug() << QString::fromStdString(str); // 输出:Hello World!
```
阅读全文