标签: c++ templates constructor initializer
我看过为类模板编写的以下代码:
template<class T> class NTree { private: T fKey; public: NTree() : fKey(T()) { //constructor } };
我不明白的是这个fKey(T())。我们不能仅使用fKey()对其进行初始化吗?抱歉,如果这是一个简单的问题,我找不到类似这种情况的其他任何具体示例。