gpt4 book ai didi

c++ - 如何从 ASCII 文本文件中读取(小)整数到 C++ 中足够的数据数组

转载 作者:行者123 更新时间:2023-11-30 03:39:43 25 4
gpt4 key购买 nike

我想从 ASCII 文本文件(由空格分隔)加载一堆整数,知道先验数据范围(例如 0-255)。我的问题是我无法在右侧为“unsigned char”类型的输入流上使用“>>”运算符读取此类数字。数据文件可能如下所示:

12 42 0 127 255  

(万一这很重要:最后有一个换行符,但这个编辑器似乎忽略了它,即使我添加了两个空格。)这是我的示例代码:

#include <cstdint>
#include <fstream>
#include <iostream>

using Datum = uint_least8_t; // Does not work.
// using Datum = unsigned char; // Does not work either (is "usually" the same as above).
// using Datum = char; // Does not work -- as expected. But why does this not store the blanks?
// using Datum = uint_least16_t; // Works.

int main()
{
std::ifstream is( "data.txt", std::ifstream::in ); // not std::ifstream::binary
constexpr std::size_t n = 5;
Datum data[n];
for( std::size_t i = 0; i < n; ++i )
is >> data[i];

for( std::size_t i = 0; i < n; ++i )
std::cout << "\"" << data[i] << "\" ";
std::cout << "\n";

return 0;
}

前三个 typedef 的结果是

"1" "2" "4" "2" "0"

那么谁能告诉我为什么会发生这种情况,以及如何解决它?我不喜欢将数字临时存储在不必要的大数据类型(甚至只是)中的想法。

最佳答案

unsigned char 是特殊的 — 标准库正在应用其特殊情况的“解释和转换 ASCII 字符”算法,因此从文件中读取“2”将导致 unsigned char50,而不是 2

对于实际上只是 charunsigned char 别名的任何“类型”也是如此,例如 uint_least8_t (可能)。

改为读入 int,然后在需要时向下转换为 unsigned char

关于c++ - 如何从 ASCII 文本文件中读取(小)整数到 C++ 中足够的数据数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38587842/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com