gpt4 book ai didi

c++ - 字符串作为函数中的参数

转载 作者:太空宇宙 更新时间:2023-11-04 12:16:20 24 4
gpt4 key购买 nike

我写了一个函数来搜索它的参数是否在给定的表 obtab1.txt 中……optab 表有两列,其中参数只能在第一列中……在 aviasm 中。 h 文件我写了这段代码....

class aviasm
{
public:
aviasm(char *,char *);
~aviasm();

void crsymtab();
bool in1(string );

}

在我写的 aviasm.cpp 文件中...

bool aviasm::in1(string s)
{
ifstream in("optab1.txt",ios::in);//opening the optab1.txt
char c;
string x,y;
while((c=in.get())!=EOF)
{
in.putback(c);//putting back the charcter into stream
in>>x;//first field
in>>y;
if(x==s)
return true;
else
return false;
}
}

但是我在编译时遇到了几个错误....

'bool aviasm::in1(std::string)' : overloaded member function not found in 'aviasm'
'aviasm::in1' : function does not take 1 arguments
'syntax error : identifier 'string'

...有人可以帮忙吗??

最佳答案

看起来好像您正在尝试使用没有正确声明的字符串,您需要在文件顶部使用它:

#include <string>
using std::string;

关于c++ - 字符串作为函数中的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7509573/

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