在声明全局友元函数operator<<,前面必须引入头文件#include<iostream>和命名空间using namespace std,不然程序报错!!!,切记
2015-11-14
template <typename T,class C>
void display(T t,C c)
{
cout<<t<<' '<<c<<endl;
}
void display(T t,C c)
{
cout<<t<<' '<<c<<endl;
}
2015-10-31
我这里template<typename T>要写成template<typename T,typename S>才能通过,为什么?
friend void printXY(Coordinate &c);友元全局函数
friend void Cricle::printXY(Coodinate &c);Circle 友元成员数
friend void Cricle::printXY(Coodinate &c);Circle 友元成员数
2015-10-19