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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
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):
In other words, you don't really need QFile as your middleman. |
|||
|
|
|
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:
|
|||||
|
|
I just tried the following code with QtCreator and it seems to be working :
} Hope it helps a bit ! |
|||
|
|
Yes, you have access to all standard library functions within Qt apps, as far as I know. What exactly is the problem? |
|||
|
|