继承,与模板混合的策略

时间:2011-06-22 09:20:33

标签: c++ templates inheritance policy

我想做以下事情。

我有一个如下课程,其中包含一些我们现在不关心的元素。

template<class A>
class Domain
{

};

我的问题是,我想要一些新对象成为这个类的成员。但是我不能在这个定义中指定它们。我必须在其他文件中指定它。我的第一个想法是使用继承如下:

template<class G,class ctype>
class Data
{
  public:
     Data(G& g_);
  protected:
     std::vector<ctype> data1;
};

然后

template<class A>
class Domain : public Data<A,A::ctype>
{
    public:
       Domain(A& a);
       void writeData(data1);
};
template<class A>
Domain<A>::Domain(A& a)
{

}

但是,我无法将其编译。 有什么建议怎么办? 关于如何以更清洁的方式做到这一点的任何方法?

完整的程序如下。它只在头文件中。我还没有创建一个实例。该计划

28   template<class GV, class Data>
29   class System : public Data<GV,GV::ctype>
30   {
31     private:
32      typedef Dune::VTKWriter<GV> VTKWriter;
33      GV& gv_;
34      VTKWriter vtkwriter_;
35  
36    public:
37      System(GV& gv);  
38      void writeSystemInfo(std::string outfile);
39   };
40  
41   template<class GV, class Data>
42   System<GV,Data>::System(GV& gv) : gv_(gv) , vtkwriter_(gv)
43   {
44   }
45 
46   template<class GV,class Data>
47   void System<GV,Data>::writeSystemInfo(std::string outfile)
48   {
49     Data::addDatatoVTK();
50     vtkwriter_.write(outfile, Dune::VTKOptions::binaryappended);
51   }

,错误是

../dune/simulationlab/system/system.hh:29:29: error: expected template-name before ‘<’ token
../dune/simulationlab/system/system.hh:29:29: error: expected ‘{’ before ‘<’ token
../dune/simulationlab/system/system.hh:29:29: error: expected unqualified-id before ‘<’ token
../dune/simulationlab/system/system.hh:46:33: error: invalid use of incomplete type ‘class Dune::System<GV, Data>’
../dune/simulationlab/system/system.hh:29:9: error: declaration of ‘class Dune::System<GV, Data>’
../dune/simulationlab/system/system.hh:52:60: error: invalid use of incomplete type ‘class Dune::System<GV, Data>’
../dune/simulationlab/system/system.hh:29:9: error: declaration of ‘class Dune::System<GV, Data>’

1 个答案:

答案 0 :(得分:0)

A :: ctype被视为成员调用,而不是类型。您应该使用typename关键字:

template<class A>
class Domain : public Data<A,typename A::ctype>
{
    public:
       Domain(A& a);
};