C++面向对象(三)模版

模版函数(template function)为声明不是定义,在使用时根据输入类型定义

使用模版时,不会使用隐式类型转换

类模版里的每个函数都是函数模版,需要在声明前加上template

1
2
3
4
5
template <typename elemType>
class BinaryTree{
private:
BTnode<elemType> *_root;
}