免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2785 | 回复: 8
打印 上一主题 下一主题

[C++] 请教关于C++重载的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-06-27 16:27 |只看该作者 |倒序浏览
#include "stdafx.h"
#include "iostream.h"                                                                //#
//#include "string"                                                                        //*
//#include "iostream"                                                                //*
//using namespace std;                                                                //*

class TCox
{
public:
        int tc_x,tc_y;
//        string str;                                                                        //*
public:
        TCox():tc_x(0),tc_y(0){ }
        TCox(int x,int y):tc_x(x),tc_y(y){}
        friend ostream& operator<<(ostream &os,const TCox &t);                        //#
//        friend std:stream& operator<<(std:stream &os,const TCox &t);        //*
//        std:stream& operator<<(std:stream &os){return os<<tc_x;}
};

ostream& operator<<(ostream &os,const TCox &t)                                         //#
//std:stream& operator<<(std:stream &os,const TCox &t)                        //*
{
        os<<"x=="<<t.tc_x<<endl;
        os<<"y=="<<t.tc_y<<endl;
        return os;
}
int main(int argc, char* argv[])
{
        TCox p(10,20);
        std::cout<<p<<endl;
        return 0;
}


编译环境:VC6.0
按以上的程序可通过。输出结果为:X==10 Y==20;
但是当使用 带有 //*的行编译的时候出现以下错误:
D:\experiment\experiment.cpp(31) : error C2593: 'operator <<' is ambiguous
Error executing cl.exe.
experiment.exe - 1 error(s), 0 warning(s)

本人对STL涉猎不深,请教各位大虾问题出在那里???

论坛徽章:
0
2 [报告]
发表于 2003-06-27 17:43 |只看该作者

请教关于C++重载的问题

我这里没问题
使用的是bcb6

论坛徽章:
0
3 [报告]
发表于 2003-06-27 22:54 |只看该作者

请教关于C++重载的问题

哦!!你第一导入<iostream>;包时,你用的是"iostream",我刚开始学,不过我以为应该是"iostream.h"

论坛徽章:
0
4 [报告]
发表于 2003-06-27 23:50 |只看该作者

请教关于C++重载的问题

两个都是可以的。在C++的发展过程中,不同的编译器厂商可能用了不同的文件扩展名。为了消除差别,C++标准去除了扩展名。

论坛徽章:
0
5 [报告]
发表于 2003-06-30 14:03 |只看该作者

请教关于C++重载的问题

我用的也是vc6.0,但是编译你的程序没有任何问题。
我想可能是你的vc6没有打过补丁。你打上Pack5试试。

论坛徽章:
0
6 [报告]
发表于 2003-07-02 11:19 |只看该作者

请教关于C++重载的问题

pack5是什么东东啊??

论坛徽章:
0
7 [报告]
发表于 2003-07-04 17:26 |只看该作者

请教关于C++重载的问题

补丁。微软的网站上有下的。

论坛徽章:
0
8 [报告]
发表于 2003-07-04 20:06 |只看该作者

请教关于C++重载的问题

你既然定义了
friend ostream& operator<<(std:stream &os,const TCox &t) //*
是友元,你为什么写成
std:stream& operator<<(std:stream &os,const TCox &t) //*
!!好好看看友元的书!!我认为是这样,如果错了别赖我!!

论坛徽章:
0
9 [报告]
发表于 2003-07-04 22:33 |只看该作者

请教关于C++重载的问题

不会
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP