C ++ cin char按符号读取 [英] C++ cin char read symbol-by-symbol

查看:335
本文介绍了C ++ cin char按符号读取的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要逐个符号读取。但我不知道如何读取,直到输入结束。例如测试系统将会有一些变化m次。我必须逐个符号读取所有字符。只有m次。

I need to read symbol-by-symbol. But I don't know how to read until end of input. As exemple test system will cin>>somecharvariable m times. I have to read symbol-by-symbol all characters. Only m times. How I can do it?

推荐答案

如果需要逐个字符格式化输入,请执行以下操作:

If you want formatted input character-by-character, do this:

char c;
while (infile >> c)
{
  // process character c
}

如果要读取原始字节,请执行以下操作:

If you want to read raw bytes, do this:

char b;
while (infile.get(b))
// while(infile.read(&b, 1)   // alternative, compare and profile
{
  // process byte b
}

无论如何, infile 应该是 std :: istream& 类型,例如文件或 std :: cin

In either case, infile should be of type std::istream & or similar, such as a file or std::cin.

这篇关于C ++ cin char按符号读取的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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