多个重载函数实例与参数列表匹配,我找不到错误发生的位置
More than one instance of overloaded function matches the argument list and I can't find where the error happens
我在使用这段代码时出现了上述错误。
//Programming Assignment 1
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
//Function Prototypes
void getname(ofstream);
//void Evaluate_holesterol(ofstream);
//void Evaluate_BMI(ofstream);
//void Evaluate_bloodpressure(ofstream);
int main()
{
//Open output file
ofstream pfile;
pfile.open("Profile.txt");
getname(pfile);
//Evaluate_holesterol(pfile);
//Evaluate_BMI(pfile);
//Evaluate_bloodpressure(pfile);
//pfile.close();
system("pause");
return 0;
}
//Function to get patient's name
void getname(ofstream &pfile)
{
string name;
int age;
cout<<"What is the patient's full name (middle initial included)?";
getline(cin, name);
cout<<endl<<"What is the patient's age?";
cin>>age;
string line = "Patient's Name: ";
string ageline = "Patient's Age: ";
pfile<<line+name<<endl;
pfile<<age<<endl;
}
我已经检查了我的函数和参数,但我没有看到任何函数会将其参数与其他任何地方混淆。如果它很简单而我只是没有看到它,请提前道歉。
正如 cigien 和 Peter 的评论已经指出的:getname()
的声明和定义具有不匹配的参数。要解决此问题,请更改行
void getname(ofstream);
至
void getname(ofstream&);
注意ofstream
后的&
。
此外,任何获取 ofstream
作为参数的函数都应该通过引用获取它(即作为 ofstream&
而不仅仅是 ofstream
),因为 ofstream
没有复制构造函数=14=] 并且任何尝试按值传递 ofstream
都会导致编译错误。
我在使用这段代码时出现了上述错误。
//Programming Assignment 1
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
//Function Prototypes
void getname(ofstream);
//void Evaluate_holesterol(ofstream);
//void Evaluate_BMI(ofstream);
//void Evaluate_bloodpressure(ofstream);
int main()
{
//Open output file
ofstream pfile;
pfile.open("Profile.txt");
getname(pfile);
//Evaluate_holesterol(pfile);
//Evaluate_BMI(pfile);
//Evaluate_bloodpressure(pfile);
//pfile.close();
system("pause");
return 0;
}
//Function to get patient's name
void getname(ofstream &pfile)
{
string name;
int age;
cout<<"What is the patient's full name (middle initial included)?";
getline(cin, name);
cout<<endl<<"What is the patient's age?";
cin>>age;
string line = "Patient's Name: ";
string ageline = "Patient's Age: ";
pfile<<line+name<<endl;
pfile<<age<<endl;
}
我已经检查了我的函数和参数,但我没有看到任何函数会将其参数与其他任何地方混淆。如果它很简单而我只是没有看到它,请提前道歉。
正如 cigien 和 Peter 的评论已经指出的:getname()
的声明和定义具有不匹配的参数。要解决此问题,请更改行
void getname(ofstream);
至
void getname(ofstream&);
注意ofstream
后的&
。
此外,任何获取 ofstream
作为参数的函数都应该通过引用获取它(即作为 ofstream&
而不仅仅是 ofstream
),因为 ofstream
没有复制构造函数=14=] 并且任何尝试按值传递 ofstream
都会导致编译错误。