是否可以使用cin与Qt? [英] Is it possible to use cin with Qt?

查看:341
本文介绍了是否可以使用cin与Qt?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以在Qt中使用 cin ?我可以使用 cout ,但是在Qt控制台应用程序中找不到如何使用 cin 的示例。

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.

推荐答案

我测试了 Kaleb Pederson

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.

换句话说,你不需要QFile作为你的中间人。

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

这篇关于是否可以使用cin与Qt?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆