qDebug的使用

初步使用说明

#include 
//包含头文件
#include 

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    QString str1="Hello";
    str1=str1+" to you!";
    int ac=2;
    //不能忘记带括号
    qDebug()<"The number is %d",ac);
    qDebug()<<"The number is"<return a.exec();
}

你可能感兴趣的:(QT)