C++错误 error C2664: 'class std::basic_istream<char,struct std::char_traits<char> >&__thiscall std
#include<iostream>#include<fstream>#include<string>#include<cstdlib>usingnamespacestd...
#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
using namespace std;
void add_p_p(ifstream& ins,ofstream& outs);
int main()
{
ifstream fin;
ofstream fout;
fin.open("D:\\Cpp1.cpp");
fout.open("D:\\3.txt");
if(fin.fail())
{
cout<<"open error"<<endl;
exit(1);
}
if(fout.fail())
{
cout<<"out error"<<endl;
exit(1);
}
add_p_p(fin,fout);
fin.close();
fout.close();
return 0;
}
void add_p_p(ifstream& ins,ofstream& outs)
{
string name;
ins.get(name);
while(!ins.eof())
{
if(name== 'main')
outs<<"int main";
else
outs<<name;
ins.get(name);
}
}
不知道哪里错拉 求高手指点 展开
#include <fstream>
#include <string>
#include <cstdlib>
using namespace std;
void add_p_p(ifstream& ins,ofstream& outs);
int main()
{
ifstream fin;
ofstream fout;
fin.open("D:\\Cpp1.cpp");
fout.open("D:\\3.txt");
if(fin.fail())
{
cout<<"open error"<<endl;
exit(1);
}
if(fout.fail())
{
cout<<"out error"<<endl;
exit(1);
}
add_p_p(fin,fout);
fin.close();
fout.close();
return 0;
}
void add_p_p(ifstream& ins,ofstream& outs)
{
string name;
ins.get(name);
while(!ins.eof())
{
if(name== 'main')
outs<<"int main";
else
outs<<name;
ins.get(name);
}
}
不知道哪里错拉 求高手指点 展开
2个回答
展开全部
你最后的判断语句if(name=="main")
因为name是string类型的‘name’单引号是char双引号“name”才是string类型的
因为name是string类型的‘name’单引号是char双引号“name”才是string类型的
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
void add_p_p(ifstream& ins,ofstream& outs)
{
char name[255];
ins.getline(name,255);
while(!ins.eof())
{
if(strcmp(name,"main")==0)
outs<<"int main";
else
outs<<name;
ins.getline(name,255);
}
}
我对string不是很熟,但我觉得应该用字符数组存储并且用 getline 读入行,用 strcmp 比较字符串而不用 == 。
追问
可是我输出的文件是 空白。
追答
那检查你的 Cpp1.cpp 呗,我的没问题。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询