C++模板使用总结

1. map的value值为模板类,在使用迭带器时应该前面加typename 

typename map*>::iterator itr;

2. 在模板类继承中,如果要使用基类的成员变量或方法,则需要加  this->xx,this->func();

   亲测在linux下编译会报错,在windows下用VS编译没有问题。

3. 模板类继承,子类用到的函数与实例化的模板类型不同,可以以下方法处理。

template 
class A
{
    void doSomething(T a,T b);
};

template 
class B:public A
{
    void doSomething(double a,double b);     
    //在子类中,无论实例化什么类型,均需要使用double类型,可以这样实现
};

4.在模板类中,有模板成员函数,需要在类外定义。

template
class A
{
public:
    template
    void Foo(T2 v);
};

template
template
void A::Foo(T2 v)
{
    cout << "Foo(" << v << ")" <<  endl;
}

 

 

你可能感兴趣的:(C++,模板)