看一下我的同事的一些代码,我得到了以下内容:
friend bool operator==<>(ValueIter<Type> const &rhs, ValueIter<Type> const &lhs);
Run Code Online (Sandbox Code Playgroud)
它在模板类中声明:
template<typename Type>
class ValueIter: public std::iterator<std::bidirectional_iterator_tag, Type>
Run Code Online (Sandbox Code Playgroud)
有人能告诉我==<>符号表示什么吗?我希望它与!=运营商有关.