qDebug() 取消自动换行
时间: 2023-07-04 17:05:22 浏览: 302
去掉换行符
4星 · 用户满意度95%
在 Qt 中,可以使用 `qSetMessagePattern()` 函数来设置调试信息的输出格式。你可以在输出格式中添加 `%{if-category}%{message}\n%{endif}` 来取消自动换行。示例代码如下:
```cpp
#include <QDebug>
int main()
{
// 设置调试信息的输出格式
qSetMessagePattern("%{if-category}%{message}\n%{endif}");
qDebug() << "Hello, world!";
qDebug() << "This is a long message that should not be wrapped.";
return 0;
}
```
输出结果如下:
```
Hello, world!
This is a long message that should not be wrapped.
```
阅读全文