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