下面是两个简化的代码示例:第一个编译得很好,第二个发出编译错误(没有找到运算符 <<,它采用左手运算符 ByteVector...)。
两个示例之间的唯一区别是using 指令的位置。
我不想知道它为什么会失败(你没有足够的信息来回答这个问题),我只对为什么它在我放置using
.
在这两个示例中,我会期望完全相同的行为。
编译没有错误
ByteVector Test()
{
using Base::operator <<;
ByteVector foo;
int bar = 1;
foo << bar;
return foo;
}
编译出错
using Base::operator <<;
ByteVector Test()
{
...same as above, without using
}
额外的信息:
使用的 operator<< 定义如下
template<typename T>
ByteVector& operator<<(ByteVector &, const T&){...};