在>> qstr或qstr = in.readLine()中

时间:2018-10-03 17:25:07

标签: c++ qt console stdin qdebug

我想找到cin的替代品>>

__asm__ ("jmpl  $0, $main\n");

我也尝试过

#include <QDebug>
#include <QTextStream>
#include <QString>

int main(){
    qDebug() << "Test start";
    QTextStream in(stdin);
    QString qstr;
    qstr = in.readLine();
    qDebug() << "Test end";
}

但是什么都没有改变。控制台:

enter image description here

所以,我输入不定式,“测试结束”没有到来,请帮我!

0 个答案:

没有答案