从模板继承:范围错误?

时间:2011-07-16 16:20:33

标签: c++ templates inheritance

这是我的代码:

#include<stdarg.h>
#include<deque>
using namespace std;
template<typename T,int dim>
class trj:public deque<T>{
public:
    void push_back(T,...);
    virtual void set_calculate_method(int)=0;
};                                                

template<typename T,int dim>                      
class bb:public trj<T,dim>{                             
public:                                                                           
    void set_calculate_method(int);                                    
};

template<typename T,int dim>                
void trj<T,dim>::push_back(T in,...){   
    va_list ap;                         
    T aux;                              
    va_start(ap,in);                    
    aux=in;                             
    deque<T>::push_back(new T[dim]);    
    for(int i=0;i<dim;i++){             
        *(deque<T>::back()+i)=aux;      
        aux=va_arg(ap,T);               
    }                                                                  
    va_end(ap);                         
}                                       

int main(){                                               
    bb<double,3> t;                                       
    t.push_back(2,3,4);                                                                   
    return 0;                                             
}                                                         

我有这个编译器错误

uno.cpp: In member function ‘void trj<T, dim>::push_back(T, ...) [with T = double, int dim = 3]’:
uno.cpp:57:   instantiated from here
uno.cpp:16: error: no matching function for call to ‘trj< double, 3 >::push_back(double*)’
/usr/include/c++/4.4/bits/stl_deque.h:1201: note: candidates are: void std::deque <_Tp, _Alloc>::push_back(const _Tp&) [with _Tp = double, _Alloc = std::allocator<double>]
uno.cpp:57:   instantiated from here
uno.cpp:18: error: invalid type argument of ‘unary *’

为什么编译器发出“uno.cpp:16:error:没有匹配函数来调用'trj&lt; double,3&gt; :: push_back(double *)”如果我写了“deque&lt; T&gt; :: push_back”(新T [dim]);“在那一行?

2 个答案:

答案 0 :(得分:1)

因为deque<T>::push_back期望一个const引用而你正在传递一个非const指针。

我无法确定,但我认为你只想做deque<T>::resize并传入dim

答案 1 :(得分:0)

deque<T>::push_back想要T,而不是T的数组。

顺便说一句,我强烈反对从deque派生,因为它的析构函数是非虚拟的。如果某些代码通过指向基类的指针删除了类的实例,则会得到未定义的行为。