我遇到了重载 << 流运算符的问题,但我没有找到解决方案:
I have a problem to overload the << stream operator and I don't find the solution :
template<class T, unsigned int TN>
class NVector
{
inline friend std::ostream& operator<< (
std::ostream &lhs, const NVector<T, TN> &rhs);
};
template<class T, unsigned int TN>
inline std::ostream& NVector<T, TN>::operator<<(
std::ostream &lhs, const NVector<T, TN> &rhs)
{
/* SOMETHING */
return lhs;
};
它产生以下错误消息:
警告:朋友声明‘std::ostream&operator<<(std::ostream&, const NVector&)' 声明了一个非模板函数[-Wnon-template-friend]
warning : friend declaration ‘std::ostream& operator<<(std::ostream&, const NVector&)’ declares a non-template function [-Wnon-template-friend]
错误:'std::ostream&NVector::operator<<(std::ostream&, const NVector&)' 必须只取一个参数
error: ‘std::ostream& NVector::operator<<(std::ostream&, const NVector&)’ must take exactly one argument
如何解决这个问题?
非常感谢.
在你的代码中有两个不同的问题,第一个是 friend 声明(正如警告明确说的,也许不是这样清晰易懂)将单个非模板化函数声明为友元.也就是说,当您实例化模板 NVector 时,它声明了一个非模板化函数 std::ostream&operator<<(std::ostream&,NVector 作为朋友.请注意,这与声明您作为朋友提供的模板函数不同.
There are two different issues in your code, the first is that the friend declaration (as the warning clearly says, maybe not so clear to understand) declares a single non-templated function as a friend. That is, when you instantiate the template NVector<int,5> it declares a non-templated function std::ostream& operator<<(std::ostream&,NVector<int,5>) as a friend. Note that this is different from declaring the template function that you provided as a friend.
我建议您在类定义中定义友元函数.您可以在此答案中阅读更多相关信息.
I would recommend that you define the friend function inside the class definition. You can read more on this in this answer.
template <typename T, unsigned int TN>
class NVector {
friend std::ostream& operator<<( std::ostream& o, NVector const & v ) {
// code goes here
return o;
}
};
或者,您可以选择其他选项:
Alternatively you can opt for other options:
operator<< 模板声明为朋友(将授予对模板的任何和所有实例的访问权限),print(std::ostream&)成员函数并从非友元模板operator<<调用它.我仍然会选择与非模板函数交朋友,并在模板化类中提供定义.operator<< template as a friend (will grant access to any and all instantiations of the template), print( std::ostream& ) member function and calling it from a non-friend templated operator<<. I would still opt to befriend the non-template function an provide the definition inside the templated class.第二个问题是,当您想在左侧参数的类之外定义一个运算符时,该运算符是一个自由函数(未绑定到类),因此它应该不合格:
The second issue is that when you want to define an operator outside of the class of the left hand side argument, the operator is a free function (not bound to a class) and thus it should not be qualified:
template<class T, unsigned int TN>
inline std::ostream& operator<<(std::ostream &lhs, const NVector<T, TN> &rhs)
{
/* SOMETHING */
return lhs;
};
这篇关于C++:友元声明‘声明一个非模板函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
为什么两个函数的地址相同?Why do two functions have the same address?(为什么两个函数的地址相同?)
为什么 std::function 的初始化程序必须是可复制构Why the initializer of std::function has to be CopyConstructible?(为什么 std::function 的初始化程序必须是可复制构造的?)
混合模板与多态性mixing templates with polymorphism(混合模板与多态性)
我什么时候应该使用关键字“typename"?使用模When should I use the keyword quot;typenamequot; when using templates(我什么时候应该使用关键字“typename?使用模板时)
依赖名称解析命名空间 std/标准库Dependent name resolution amp; namespace std / Standard Library(依赖名称解析命名空间 std/标准库)
gcc 可以编译可变参数模板,而 clang 不能gcc can compile a variadic template while clang cannot(gcc 可以编译可变参数模板,而 clang 不能)