模板类中友元函数的声明与定义

//全部在Test.h这个头文件中
#ifndef TEST_H
#define TEST_H

…………

template
class Test								  //模板类的声明
template
bool operator==(Test& t1,Test& t2); //友元函数类外声明
…………
template
class Test
{
…………
public:
friend bool operaor== <>(Test& t1,Test& t2);/*友元函数类中声明,在函数名后面加上<>,指明它是之前声明的函数模板 的实例*/
…………
}
…………
template
bool operator==(Test& t1,Test& t2)
{
…………
}
…………
#endif


你可能感兴趣的:(C++)