我正在尝试std::reference_wrapper
为这些类制作一个多态向量:
struct Int2TypeBase{
virtual void which(){ std::cout << "Int2TypeBase" << "\n";}
};
template <int v>
struct Int2Type : public Int2TypeBase
{
enum
{
value = v
};
void which(){ std::cout << "Int2Type<" << value << ">""\n";}
friend bool operator==(const Int2Type& lhs, const Int2Type& rhs){
return lhs.v == rhs.v;
}
};
现在我正在尝试std::reference_wrapper
像这样使用:
int main(){
using namespace std;
std::vector<std::reference_wrapper<Int2TypeBase>> v;
Int2Type<0> i2t_1;
v.emplace_back(i2t_1);
auto x = v[0];
x.get().which();
std::cout << typeid(x.get()).name() << "\n";
// std::cout << (x.get() == i2t_1) << "\n";
}
输出是:
Int2Type<0>
8Int2TypeILi0EE
这是我所期望的。
但是,现在,当我取消注释时,std::cout << (x.get() == i2t_1) << "\n";
我会得到
invalid operands to binary expression ('Int2TypeBase' and 'Int2Type<0>')
这让我感到困惑,因为typeid(x.get()).name()
返回8Int2TypeILi0EE
而不是F12Int2TypeBasevE
我得到的是什么typeid(Int2TypeBase()).name();
。此外which()
,派生类也被调用...那么为什么x.get()
inx.get() == i2t_1
评估为 a Int2TypeBase
?