使用类型和非类型参数在模板类之外定义函数

时间:2012-07-13 01:11:26

标签: c++

template <typename T, int a, UINT32 B>
class Test
{
    public:
        Test(T, int);
        void foo();
        int bar();
};

如何定义此类之外的构造函数和函数?

2 个答案:

答案 0 :(得分:2)

只需在构造函数/方法定义之前包含完整模板“specification”,并在限定方法/构造函数名称时在类名后面的尖括号中包含模板参数名称。

像这样:

#include <iostream> 
#include <vector>

template <typename T, int a, int b>
class Test
{
    public:
        Test(T t, int i);
        void foo();
        int bar();
};

template <typename T, int a, int b>
Test<T, a, b>::Test(T t, int i)
{
    std::cout << "Constructor, i = " << i << std::endl;
}

template <typename T, int a, int b>
void Test<T, a, b>::foo()
{
    std::cout << "foo() Template params:" << a << " " << b << std::endl;
}

template <typename T, int a, int b>
int Test<T, a, b>::bar()
{
    std::cout << "bar() Template params:" << a << " " << b << std::endl;
}

int main()
{
    Test<std::vector<double>, 13, 42> t(std::vector<double>(2), 5);
    t.foo();
    t.bar();
}

答案 1 :(得分:1)

template <typename T, int a, int B>
Test<T, a, B>::Test(T x1, int x2)
{

}

可以对该功能采用相同的方法。