考虑以下 C++ 代码,
template <typename Derived>
struct A
{
bool usable_;
};
template <typename Derived>
struct B : A< B<Derived> >
{
void foo()
{
usable_ = false;
}
};
struct C : B<C>
{
void foo()
{
usable_ = true;
}
};
int main()
{
C c;
}
我得到编译错误:在成员函数中void B<Derived>::foo()
:
template_inherit.cpp:12: 错误: 'usable_' 未在此范围内声明。
这是为什么 ?有什么好的解决办法吗?