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 逐个符号读取
- 从python回调到c++的选项 2022-11-16
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- C++ 协变模板 2021-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 近似搜索的工作原理 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 静态初始化顺序失败 2022-01-01