下一个代码可以正常工作(这是我的其他问题的过度简化版本,类型更长,更深,模板更多):
template<class C>
struct Base
{};
template<class C>
struct Derived : public Base<C>
{
Derived() : Base<C>()
{}
};
但是,如果不“写入”其基类的完整类型,我怎么能调用基类构造函数呢?例如,我尝试了类似的东西:
template<class C>
struct Base
{
typedef Base base_type;
};
template<class C>
struct Derived : public Base<C>
{
Derived() : base_type() {}
};
int main()
{
Derived<void> b;
}
但是无法识别“base_type”。gcc 抛出的消息是:
test3.cpp: In constructor 'Derived<C>::Derived()':
test3.cpp:100:17: error: class 'Derived<C>' does not have any field
named 'base_type'
为了解决它,我必须Base<C>::base_type
在构造函数中编写,但这会使base_type
自身的存在变得无关紧要。
难道是我的省写运动不可能吗?
而且,为什么base_type
在构造函数中找不到,但是这很好用?
int main()
{
Derived<void>::base_type b;
}
编辑:随着@Jack Aidley的评论,我发现使用简单别名获取基类类型的最佳形式是:
template<typename C> struct Base {};
template<typename C, typename Base>
struct Derived_impl : public Base
{
Derived_impl() : Base()
{}
};
template<typename C>
using Derived = Derived_impl<C, Base<C> >;
int main()
{
Derived<void> b;
}