Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to use cin in Qt? I can use cout but cannot find examples of how to use cin within a Qt console application.

share|improve this question

4 Answers

I tested out Kaleb Pederson's answer, and found a more consise way than the solution he presented (though I have to thank him for pointing me to the right direction):

QTextStream qtin(stdin); 
QString line = qtin.readLine();  // This is how you read the entire line

QString word;
qtin >> word;    // This is how you read a word (separated by space) at a time.

In other words, you don't really need QFile as your middleman.

share|improve this answer
Coolbeans. I didn't like the idea of using "stdin" as a fake file. – Mark Jun 10 '10 at 21:42

Yes, it's possible and works as expected although you can do things, like use threads, that may cause problems with this approach.

However, I would recommend a more idiomatic (Qt) way to read from stdin:

QString yourText;
QFile file;
file.open(stdin, QIODevice::ReadOnly);
QTextStream qtin(&file);
qtin >> yourText;
share|improve this answer
Thank you for such a uesful snippet piece of code. – ShaChris23 Jun 10 '10 at 20:10
And you can do similar with cout (qout). One of the larger benefits is the native support for many Qt types. – Kaleb Pederson Jun 10 '10 at 21:57

I just tried the following code with QtCreator and it seems to be working :

#include <QtCore/QCoreApplication>
#include <iostream>
using namespace std;

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

    cout << endl << "hello" << endl;
    int nb;
    cout << "Enter a number " << endl;
    cin>>nb;
    cout << "Your number is "<< nb<< endl;

    return a.exec();

}

Hope it helps a bit !

share|improve this answer
I think he is talking about using cin with certain qt objects especially QString not just ints. – Roman A. Taycher Feb 25 '10 at 7:12

Yes, you have access to all standard library functions within Qt apps, as far as I know. What exactly is the problem?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.