QT入門系列(3) 控制台輸出QString

2021-09-08 11:25:55 字數 1111 閱讀 7316

方式一:使用qdebug()輸出

qstring str("liyifeng");qdebug() << str;
輸出結果:"liyifeng"

qstring str("liyifeng");qdebug() << str.tostdstring().data

();

輸出結果:liyifeng方式二:使用std::cout輸出

#include qstring str("liyifeng");std::cout

<< str.tostdstring().data() << std::endl;

輸出結果:liyifeng

再分享一下我老師大神的人工智慧教程吧。零基礎!通俗易懂!風趣幽默!還帶黃段子!希望你也加入到我們人工智慧的隊伍中來!

方式一:使用qdebug()輸出

qstring str("liyifeng");qdebug() << str;
輸出結果:"liyifeng"

qstring str("liyifeng");qdebug() << str.tostdstring().data

();

輸出結果:liyifeng方式二:使用std::cout輸出

#include qstring str("liyifeng");std::cout

<< str.tostdstring().data() << std::endl;

輸出結果:liyifeng

QT 控制台輸出

首先在標頭檔案中包含 include 在需要使用的地方插入 qdebug intensity d intensity 0 2 d表示整數 輸出結果 intensity 195 注 a,a 讀入乙個浮點值 僅c99有效 c 讀入乙個字元 d 讀入十進位制整數 i 讀入十進位制,八進位制,十六進製制整數...

Qt控制台輸出QString

有時候想在控制台輸出我們想要的qstring變數。1 qdebug可以實現在控制台終端列印,但我們還是想使用c 中的std cout2 網上說的方法利用qtextstream include qtextstream cin stdin,qiodevice readonly qtextstream c...

控制台輸出控制

by jingzhongrong 通過win32api提供的函式,可以對控制台程式的輸出進行控制,例如字型顏色 標題文字,以及各種屬性等等。主要使用到的函式以及宣告如下 handle getstdhandle dword nstdhandle 此函式用於獲取控制台輸出 輸入控制代碼。得到控制代碼之後...