gpt4 book ai didi

c++ - 字符数组输出正确但实际上没有存储正确的值

转载 作者:搜寻专家 更新时间:2023-10-31 02:16:41 26 4
gpt4 key购买 nike

C++ 新手,遇到了另一个需要学习的障碍。尝试制作一个简单的程序,从文件中读取字符并将字符存储到 char 数组中。

#include <iostream>
#include <fstream>
#include <string>
#include <cctype>
using namespace std;

int main ()
{
const int SIZE = 9;
char arr[SIZE];
char currentChar;
int numChar = 0;
int i = 0;

ifstream infile ("file.txt");

if (!infile)
{
cout << "Can not open the input file"
<< " This program will end."<< "\n";
return 1;
}

while(infile.get(arr[i]))
{
i++;
numChar ++;
}

for(i=0;i<numChar;i++)
{
cout << arr[i];
}

cout << "\n" << arr[1];

return 0;
}

file.txt 的内容:

A
a
9

!

问题在于:

  for(i=0;i<numChar;i++)
{
cout << arr[i];
}

具有与读取的文件相同的输出,但是当我手动检查数组元素时。 arr[1] 存储一个空白,arr[3] ='a'。我在尝试使用 isalpha 和 isdigit 语句评估每个元素的字符类型时发现了这一点。为什么它在到达下一行之前存储 2 个空白元素,为什么输出看起来正确但实际上不是?有没有比我正在做的更简单、更有效的方法?

预先感谢您的帮助。

最佳答案

您正在阅读的是文件中每个字符旁边的换行符。如果你在显示字符时将字符转换为 int,你会得到如下内容:

65 //ascii code for 'A' at arr[0]
10 //ascii code for new line character(\n) at arr[1]
97 //ascii code for 'a' at arr[2]
10
..

关于c++ - 字符数组输出正确但实际上没有存储正确的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36670037/

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