为什么不允许使用此默认模板参数?

时间:2011-01-09 11:48:13

标签: c++ templates g++ default-parameters

我有以下课程:

template <typename Type = void>
class AlignedMemory {
public:
    AlignedMemory(size_t alignment, size_t size)
        :   memptr_(0) {
        int iret(posix_memalign((void **)&memptr_, alignment, size));
        if (iret) throw system_error("posix_memalign");
    }
    virtual ~AlignedMemory() {
        free(memptr_);
    }
    operator Type *() const { return memptr_; }
    Type *operator->() const { return memptr_; }
    //operator Type &() { return *memptr_; }
    //Type &operator[](size_t index) const;
private:
    Type *memptr_;
};

尝试实例化一个这样的自动变量:

AlignedMemory blah(512, 512);

这会出现以下错误:

  

src / cpfs / entry.cpp:438:错误:'blah'之前缺少模板参数

我做错了什么? void不是允许的默认参数吗?

2 个答案:

答案 0 :(得分:11)

我认为你需要写:

AlignedMemory<> blah(512, 512);

见14.3 [temp.arg] / 4:

  

使用默认的 template-arguments 时, template-argument 列表可以为空。在这种情况下,空<>括号仍应用作 template-argument-list

答案 1 :(得分:5)

您的语法错误:

AlignedMemory blah(512, 512); //wrong syntax

正确的语法是:

AlignedMemory<> blah(512, 512); //this uses "void" as default type!

错误消息本身提供了此提示。再看一遍:

  

src / cpfs / entry.cpp:438:错误:缺少模板参数之前   “BUF”

PS:我确定'buf'是一个错字。你想写'blah' - 变量的名字!