请教C++模板类问题,VC6.0环境下

类别:编程语言 点击:0 评论:0 推荐:

// Example of the template keyword
template <class T, int i> class TestClass {
public:
   char buffer[i];
   T testFunc(T* p1 );
};

template <class T, int i>
T TestClass<T,i>::testFunc(T* p1) {
    return *(p1++)
};

// To create an instance of TestClass
TestClass<char, 5> ClassInst;
以上程序编译通过,但是连接有问题,请教高手

本文地址:http://com.8s8s.com/it/it26220.htm