微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c – 用于类封装的模板参数的默认参数

码:
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();
}

原文地址:https://www.jb51.cc/c/114878.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐