我正在尝试在 C++ 中实现特定的模板设计,并遇到了一个我想要解决的问题。这是设置,并解释了要遵循的问题。
我声明了一个模板化的抽象基类,如下所示:
template <class TModel, class TVertex>
class AttributeEvaluator2f
{
public:
virtual void evaluate( TModel& model, TVertex& v, float x, float y ) = 0;
};
然后我想实现专门化模板参数之一的子类,如下所示:
template <class TVertex>
class SurfacePositionFromSphere : public AttributeEvaluator2f<Sphere3f,TVertex>
{
public:
virtual void evaluate( Sphere3f& sphere, TVertex& v, float theta, float phi )
{
sphere.SamplePosition( v.position, theta, phi );
};
};
然后,我将基于这些类实例化一个对象,如下所示:
SurfacePositionFromSphere<BasicVertexDX11::Vertex> attribute();
编译错误表明我从未实现原始基类的抽象方法。这可能是因为在子类中,我直接使用第一个参数声明该方法已经专门化(Sphere3f
在这种情况下)。
所以问题是,是否有可能以这种方式覆盖抽象基类方法参数的类型?如果没有,是否有类似的机制可用于提供类似的功能?
在此先感谢您的帮助!
编辑:由于模板展开,确切的错误消息是巨大的,但这里是它的主要部分供您参考:错误 C2259: 'Glyph3::AttributeEvaluator2f' : cannot instantiate abstract >class 1> with 1> [ 1> TModel =Glyph3::Sphere3f, 1> TVertex=Glyph3::BasicVertexDX11::Vertex 1> ] 1> 由于以下成员: 1> 'void Glyph3::AttributeEvaluator2f::evaluate(TModel &,TVertex &,float,float)' : 是抽象的 1> with 1> [ 1> TModel=Glyph3::Sphere3f, 1> TVertex=Glyph3::BasicVertexDX11::Vertex 1> ] 1> c:\users\zij1fh\documents\visual studio 2012\projects\hg3\trunk\hieroglyph3\source\rendering\attributeevaluator2f.h(26) :参见 'Glyph3::AttributeEvaluator2f::evaluate' 1> 的声明 1> [ 1> TModel=Glyph3::Sphere3f, 1> TVertex=Glyph3::BasicVertexDX11::Vertex 1> ] 1> c:\program files (x86)\microsoft visual studio 11.0\vc\include\xmemory0(751) :参见函数参考模板实例化 'void std::allocator<_Ty>::construct<_Objty,_Ty>(_Objty *,_V0_t &&)' 正在编译 1> 1> [ 1> _Ty=Glyph3::AttributeEvaluator2f, 1> _Objty=Glyph3: :AttributeEvaluator2f, 1> _V0_t=字形3::AttributeEvaluator2f 1>] 1> c:\program files (x86)\microsoft visual studio 11.0\vc\include\xmemory0(751) : 请参阅函数模板实例化 'void std::allocator<_Ty>::construct<_Objty,_Ty>( _Objty *,_V0_t &&)' 正在编译 1> 1> [ 1> _Ty=Glyph3::AttributeEvaluator2f, 1> _Objty=Glyph3::AttributeEvaluator2f, 1> _V0_t=Glyph3::AttributeEvaluator2f 1> ] 1> c:\program文件 (x86)\microsoft visual studio 11.0\vc\include\xmemory0(903) :参见对函数模板实例化的参考 'void std::allocator_traits<_Alloc>::construct<_Ty,_Ty>(std::allocator<_Ty> &,_Objty *,_V0_t &&)' 正在编译\program files (x86)\microsoft visual studio 11.0\vc\include\xmemory0(751) :参见对函数模板实例化的引用 'void std::allocator<_Ty>::construct<_Objty,_Ty>(_Objty *,_V0_t && )' 正在编译 1> 1> [ 1> _Ty=Glyph3::AttributeEvaluator2f, 1> _Objty=Glyph3::AttributeEvaluator2f, 1> _V0_t=Glyph3::AttributeEvaluator2f 1> ] 1> c:\program files (x86)\ microsoft visual studio 11.0\vc\include\xmemory0(903):参见对函数模板实例化的引用 'void std::allocator_traits<_Alloc>::construct<_Ty,_Ty>(std::allocator<_Ty> &,_Objty *, _V0_t &&)' 正在编译\program files (x86)\microsoft visual studio 11.0\vc\include\xmemory0(751) :参见对函数模板实例化的引用 'void std::allocator<_Ty>::construct<_Objty,_Ty>(_Objty *,_V0_t && )' 正在编译 1> 1> [ 1> _Ty=Glyph3::AttributeEvaluator2f, 1> _Objty=Glyph3::AttributeEvaluator2f, 1> _V0_t=Glyph3::AttributeEvaluator2f 1> ] 1> c:\program files (x86)\ microsoft visual studio 11.0\vc\include\xmemory0(903):参见对函数模板实例化的引用 'void std::allocator_traits<_Alloc>::construct<_Ty,_Ty>(std::allocator<_Ty> &,_Objty *, _V0_t &&)' 正在编译请参阅对函数模板实例化 'void std::allocator<_Ty>::construct<_Objty,_Ty>(_Objty *,_V0_t &&)' 的引用 1> 编译 1> [ 1> _Ty=Glyph3::AttributeEvaluator2f, 1> _Objty=Glyph3::AttributeEvaluator2f, 1> _V0_t=Glyph3::AttributeEvaluator2f 1> ] 1> c:\program files (x86)\microsoft visual studio 11.0\vc\include\xmemory0(903) :参见对函数模板实例化的参考void std::allocator_traits<_Alloc>::construct<_Ty,_Ty>(std::allocator<_Ty> &,_Objty *,_V0_t &&)' 正在编译请参阅对函数模板实例化 'void std::allocator<_Ty>::construct<_Objty,_Ty>(_Objty *,_V0_t &&)' 的引用 1> 编译 1> [ 1> _Ty=Glyph3::AttributeEvaluator2f, 1> _Objty=Glyph3::AttributeEvaluator2f, 1> _V0_t=Glyph3::AttributeEvaluator2f 1> ] 1> c:\program files (x86)\microsoft visual studio 11.0\vc\include\xmemory0(903) :参见对函数模板实例化的参考void std::allocator_traits<_Alloc>::construct<_Ty,_Ty>(std::allocator<_Ty> &,_Objty *,_V0_t &&)' 正在编译1> [ 1> _Ty=Glyph3::AttributeEvaluator2f, 1> _Objty=Glyph3::AttributeEvaluator2f, 1> _V0_t=Glyph3::AttributeEvaluator2f 1> ] 1> c:\program files (x86)\microsoft visual studio 11.0\vc \include\xmemory0(903) : 请参阅正在编译的函数模板实例化 'void std::allocator_traits<_Alloc>::construct<_Ty,_Ty>(std::allocator<_Ty> &,_Objty *,_V0_t &&)' 的引用1> [ 1> _Ty=Glyph3::AttributeEvaluator2f, 1> _Objty=Glyph3::AttributeEvaluator2f, 1> _V0_t=Glyph3::AttributeEvaluator2f 1> ] 1> c:\program files (x86)\microsoft visual studio 11.0\vc \include\xmemory0(903) : 请参阅正在编译的函数模板实例化 'void std::allocator_traits<_Alloc>::construct<_Ty,_Ty>(std::allocator<_Ty> &,_Objty *,_V0_t &&)' 的引用请参阅正在编译的函数模板实例化 'void std::allocator_traits<_Alloc>::construct<_Ty,_Ty>(std::allocator<_Ty> &,_Objty *,_V0_t &&)' 的引用请参阅正在编译的函数模板实例化 'void std::allocator_traits<_Alloc>::construct<_Ty,_Ty>(std::allocator<_Ty> &,_Objty *,_V0_t &&)' 的引用
EDIT2:上面指出的用法不正确(正如安迪指出的那样)。这是我的确切用法:
VertexEvaluator2f< Sphere3f, BasicVertexDX11::Vertex > evaluator;
evaluator.Evaluators.push_back( SurfacePositionFromSphere<BasicVertexDX11::Vertex>() );
在 VertexEvaluator2f 类中,我遍历属性以生成一个顶点。为了完整起见,这也是该类的声明:
template <class TModel, class TVertex>
class VertexEvaluator2f
{
public:
void SetModel( TModel& model ) {
m_Model = model;
};
void evaluate( TVertex& v, float x, float y ) {
for ( auto& evaluator : Evaluators ) {
evaluator.evaluate( m_Model, v, x, y );
}
};
std::vector< AttributeEvaluator2f< TModel, TVertex > > Evaluators;
protected:
TModel m_Model;
};