发布网友 发布时间:2024-09-06 22:06
共3个回答
热心网友 时间:2024-11-11 15:12
有两种方法:
一种是直接把函数体写在类声明friend的地方
friend seqList<elemType> operator+(const seqList<elemType> &r1,const seqList<elemType> &r2) {二是换个模板参数,否则会有模板类型重名(shadow)的提示
template<typename U>热心网友 时间:2024-11-11 15:15
友元函数必须在类内就加上template<class...>热心网友 时间:2024-11-11 15:15
template<class elemType>