gpt4 book ai didi

c++ - 从 .cpp 文件读取时出现问题

转载 作者:行者123 更新时间:2023-11-28 00:41:34 25 4
gpt4 key购买 nike

我有一个名为 text.cpp 的文件。我的任务是从文件中读取的。

text.cpp文件(文件内)

#include <iostream>     
#include <cstring>
#include <ctype.h>
#include "program.h"
#include "binarytree.h"
#include "linkedlist.h"

当我检测到

 '#' symbol

如果检测到'<' & '"',系统将开始循环符号,它将打印出剩余的单词。 示例输出:iostraem

我可以检测到 '<'符号并打印输出成功。但是当我检测到 '"'符号,我可以打印剩余字(program.h),但它会跟随烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫这个词的背后。

我可以知道我的代码有什么问题吗?

我的代码如下:

 #include <iostream>
#include <string>
#include <fstream>

using namespace std;

int main()

{ char temPlate[100];
char FileName[20];


cout << "Enter Filename:" ;
cin >> FileName;

fstream read(FileName);
if (read.is_open())
{
while(!read.eof())
{
read.getline(temPlate, 100);

for (int k = 0; k < 100 ;k++)
{
if(temPlate[k] == '#')
{
for(int i = 0; i < 100; i++)
{
if(temPlate[i] == '<' || temPlate[i] == '"')
{
for (int j = i+1; j < 100; j++)
{
if(temPlate[j] == '>' || temPlate[j] == '"')
{
break;

}
cout << temPlate[j];

}
cout <<endl;
}
}
}
}
}
}

else
{
cout << "File does not exist, press enter to exit the program." << endl;
system("pause");
exit(EXIT_SUCCESS);

}
system("pause");

}

输出:

Enter FileName: text.cpp
iostream
cstring
ctype.h
program.h
ype.h
binarytree.h
烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫
linkedlist.h
烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫烫

最佳答案

近端,这是因为您正在扫描整个缓冲区,而不仅仅是在上次 getline() 期间实际读入的部分。

但在更基本的层面上,这是因为您使用的是字符数组而不是字符串。 C++ 字符串存在的原因有很多,但其中一个重要因素是避免与固定大小缓冲区相关的许多错误。

关于c++ - 从 .cpp 文件读取时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18617654/

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