- 论坛徽章:
- 0
|
#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涉猎不深,请教各位大虾问题出在那里??? |
|