C++ cin char read symbol-by-symbol(C++ cin char 逐个符号读取)
问题描述
我需要逐个符号阅读.但我不知道如何阅读,直到输入结束.例如,测试系统将 cin>>somecharvariable 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 逐个符号读取的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ cin char 逐个符号读取
基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07