C++ 报错 error C2593: 'operator <<' is ambiguous 10

#include<iostream>#include"string"usingnamespacestd;classPerson{friendostream&operato... #include<iostream>
#include"string"
using namespace std;
class Person

{

friend ostream &operator<<( ostream &, const Person &);

friend istream &operator>>( istream &, Person &);

public:
int age;
string name;
string hobbies;
};

ostream &operator<<(ostream &output, const Person &Person )
{
output <<"("<< Person.age << ")"
<< Person.name
<< Person.name;
return output;
}

istream &operator>>(istream &input, Person &Person )

{
input>>Person.age
>>Person.name
>>Person.name;
return input;
}

void main()
{
Person lw;

cout<<"请输入李文属性"<<endl;

cin>>lw;

cout<<lw;

}
系统报错
error C2593: 'operator >>' is ambiguous
error C2593: 'operator <<' is ambiguous

求告诉错在哪里 并如何改正
展开
 我来答
于争天
2015-05-17 · 超过35用户采纳过TA的回答
知道答主
回答量:38
采纳率:0%
帮助的人:51.5万
展开全部

在vs2010上运行正常,你用的编译器的问题吧

output <<"("<< Person.age << ")"
        << Person.name
<< Person.name;//两次输入name,估计你打错了
           return output;
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式