CQtwindows32ToolsQtCreatorbinqtcreator_process_stub.exe  


#include<QCoreApplication>
#include<QDebug>
#include<QTextStream>
 
int main(int argc, char*argv[]) {
 
    QCoreApplication a(argc,argv);
 
    qDebug()<<"PleaseKeyIn:";
    qDebug()<<"----------------------------";
 
    while(1){
        QTextStream qtin (stdin);
        QString line = qtin.readLine();
 
        qDebug()<<"KeyIn:"<<line.toStdString().data();
    }
 
    return a.exec();
}
 
 
 
 
arrow
arrow
    全站熱搜

    黃彥霖 發表在 痞客邦 留言(0) 人氣()