码:
template <typename element_type,typename container_type = std::deque<element_type> > class stack { public: stack() {} template <typename CT> stack(CT temp) : container(temp.begin(),temp.end()) {} bool empty(); private: container_type container; }; template <typename element_type,typename container_type = std::deque<element_type> > bool stack<element_type,container_type>::empty() { return container.empty(); }
当我编译它给出错误.
default argument for template parameter for class enclosing
'bool stack<element_type,container_type>::empty()'
为什么编译器抱怨,我该怎么办?
解决方法
您尝试为第二个模板参数提供一个默认参数,以堆栈两次.默认模板参数,就像默认函数参数一样,只能定义一次(每个翻译单元);甚至不能重复完全相同的定义是允许的.
只需在定义类模板的开头键入默认参数即可.之后,请注意:
template<typename element_type,typename container_type> bool stack<element_type,container_type>::empty(){ return container.empty(); }