| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 397 人关注过本帖
标题:大神帮我看看
只看楼主 加入收藏
zhouhai1993
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2013-11-20
结帖率:0
收藏
已结贴  问题点数:18 回复次数:4 
大神帮我看看
--------------------Configuration: StudentsVsCPlusPlus - Win32 Debug--------------------
Compiling...
StudentsVsCPlusPlus.cpp
C:\Documents and Settings\Administrator\桌面\StudentsVsCPlusPlus\StudentsVsCPlusPlus.cpp(65) : error C2593: 'operator >>' is ambiguous
C:\Documents and Settings\Administrator\桌面\StudentsVsCPlusPlus\StudentsVsCPlusPlus.cpp(66) : error C2593: 'operator <<' is ambiguous
C:\Documents and Settings\Administrator\桌面\StudentsVsCPlusPlus\StudentsVsCPlusPlus.cpp(73) : error C2593: 'operator >>' is ambiguous
C:\Documents and Settings\Administrator\桌面\StudentsVsCPlusPlus\StudentsVsCPlusPlus.cpp(76) : error C2593: 'operator <<' is ambiguous
C:\Documents and Settings\Administrator\桌面\StudentsVsCPlusPlus\StudentsVsCPlusPlus.cpp(77) : error C2593: 'operator >>' is ambiguous
Error executing cl.exe.

StudentsVsCPlusPlus.obj - 5 error(s), 0 warning(s)



这五个错误时怎么回事 啊,在vc6里面出现的错误 ,在vs2010中无误,这个错误怎么改呢,下面是相关的一些代码,
#include "stdafx.h"
#include <iostream>

#include "Student.h"
#include"Friend.h"
#include"Teacher.h"


#include <fstream>
#include <string>

#include <iomanip>
#include <cstdlib>



ostream & operator<<(ostream &out,Student &s)
{
    out<<s.name<<""<<s.num<<""<<s.nAge<<""
        <<s.addr<<'\n';
    return out;
}
istream & operator>>(istream &in,Student &s)
{
    in>>s.name>>s.num>>s.nAge>>s.addr;
    return in;

}

extern _CRTIMP istream MyMethod()
{
    return     cin;
}


int main(int argc, char* argv[])
{

ofstream ofile;
    ifstream ifile;
    ofile.open("d:s.txt");

    Student s;
    for (int i=1;i<=3;i++)
    {
        cout<<"请输入第"<<i<<"个学生的姓名 学号 年龄  住址"<<endl;
        MyMethod()>>s;             //调用>>运算符重载函数,输入学生信息
        ofile<<s;                        //调用<<运算符重载函数,将学生信息写入到文件中
    }

    ofile.close();

    cout<<"\n读出文件内容"<<endl;
    ifile.open("d:\\s.txt");
    ifile>>s;
    while(!ifile.eof())
    {
        cout<<s;
        ifile>>s;
    }
    ifile.close();

}


student类中相关代码

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include <string>
#include <iostream>
#include"Person.h"
using namespace std;




class Student  : public Person
{
public:
    char name[10];
    int num;
    char addr[15];
    friend ostream & operator<<(ostream &out,Student &s);
    friend istream & operator>>(istream &in,Student &s);

    string strNO;
    string strName;
    int        nAge;
    string strGender;
    string strInterest;
    int        nStudyWill;//0~100表示学习意愿

private:
    int nHeight;
    int nWeight;
public:
    string GetTask();


     friend void Display(Student &stu)
    {
        cout << "开始输出个人的公开信息:" << endl;
        stu.PrintInfo();

        cout << "开始输出个人隐私信息:"<<endl;
        cout << "身高:" << stu.nHeight << endl;
        cout << "体重:" << stu.nWeight << endl;
    }
    void SetPersonalInfo(int iHeight,int iWeight);
    void PrintInfo();
    Student();
    Student(string sNO,string sName,int iAge,string sGender,
        string sInterest,int iStudyWill);
   
    virtual ~Student();
    friend class Friend;
   
};



与错误相关的代码就是这些了  ,大神些帮帮我吧,在vc6中怎么改  ?vs2010中可以正常编译。谢谢
搜索更多相关主题的帖子: Documents 
2013-11-20 13:52
peach5460
Rank: 15Rank: 15Rank: 15Rank: 15Rank: 15
来 自:武汉
等 级:贵宾
威 望:30
帖 子:2780
专家分:6060
注 册:2008-1-28
收藏
得分:18 
65是哪行?

拜托你想得到帮助就先把问题描述清楚

[ 本帖最后由 peach5460 于 2013-11-20 14:26 编辑 ]

我总觉得授人以鱼不如授人以渔...
可是总有些SB叫嚣着:要么给代码给答案,要么滚蛋...
虽然我知道不要跟SB一般见识,但是我真的没修炼到宠辱不惊...
2013-11-20 14:24
zhouhai1993
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2013-11-20
收藏
得分:0 
回复 2楼 peach5460
MyMethod()>>s;             //调用>>运算符重载函数,输入学生信息
拜托了
2013-11-20 14:32
peach5460
Rank: 15Rank: 15Rank: 15Rank: 15Rank: 15
来 自:武汉
等 级:贵宾
威 望:30
帖 子:2780
专家分:6060
注 册:2008-1-28
收藏
得分:0 
http://www.

编译器BUG

我总觉得授人以鱼不如授人以渔...
可是总有些SB叫嚣着:要么给代码给答案,要么滚蛋...
虽然我知道不要跟SB一般见识,但是我真的没修炼到宠辱不惊...
2013-11-20 14:39
zhouhai1993
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2013-11-20
收藏
得分:0 
谢谢   
2013-11-20 14:44
快速回复:大神帮我看看
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017033 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved