首页 > 解决方案 > 如何用新窗口显示每个 qDebug?

问题描述

我制作了一个 QT 控制台程序。我想通过新窗口显示每个命令。我怎么能那样做??

主文件

我使用的系统是带有QT的win10。

#include <QCoreApplication>
#include <QDebug>           //在文字視窗輸出文字功能函式
#include <QDir>             //搜尋資料夾功能函式
#include <QFileInfo>        //顯示檔案資訊
#include <QString>          //字串函式
#include <QStringList>      //字串陣列函式



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

       QDir mDir;    //設定資料夾位置
       qDebug() << mDir.exists();       //輸出確定是否有mDir資料夾

       QString command = "frtomem -p WnaYooAQ ";

        foreach(QFileInfo mitm, mDir.entryInfoList(Qfilter))     //列出所有資料夾中篩選的檔案內容
       {
           qDebug() << command << mitm.fileName();
       }

    return a.exec();
}

我只能通过一个控制台窗口显示它。不能分开它。

标签: qtqdebug

解决方案


推荐阅读