我想从文件中读取一些值并返回其代码。例如,如果我在文件中有“if(x = 3)”,输出将是这样的:
22 if
12 (
2 x
11 =
1 3
13 )
左边的每个数字是右边的值的代码,例如标识符(这里是X),它是2,依此类推。
问题是,当我在SCAN函数中打开“test.txt”文件并找到代码然后它返回它并将等效字符放在输出中。但从那时起它会进入无限循环,因为之前返回的字符无法更改。所以它返回了“22 if”的无限输出。
int main () {
int Code;
string Str;
do
{
Code=SCAN(Str);
cout<<Code<<"\t"<<Str<< endl;
}
while(Code !=0);
}
这是SCAN功能
int SCAN(string& String){
int Code;
ifstream ifs;
ifs.open ("test.txt", ifstream::in);
char c = ifs.get();
String=c;
while (ifs.good()) {
if (isspace(c)){
c = ifs.get();
}
if (isalpha(c)){
string temp;
while(isalpha(c)){
temp.push_back(c);
c = ifs.get();
}
String = temp;
return 2;
}
if(isdigit(c)){
string temp;
while(isdigit(c)){
temp.push_back(c);
c = ifs.get();
}
String=temp;
return 1;
}
if(c=='('){
c = ifs.get();
return 12;
}
c = ifs.get();
}//endwhile
ifs.close();
return 0;
}
我发布了易于阅读的代码摘要,其中包含字母数字空格的循环(只是忽略空格)和“(”。
答案 0 :(得分:1)
我确实想解决这个问题,但我想知道是否有 在不改变主要功能的情况下修复它的方法。我的意思是修改 只是SCAN功能。
bool isOpened = false;
ifstream ifs;
int SCAN(string& String){
int Code;
if (!isOpened) {
ifs.open ("test.txt", ifstream::in);
isOpened = true;
}
...
ifs.close();
isOpened = false;
return 0;
}