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

发布于 2024-10-10 18:21:37 字数 826 浏览 4 评论 0原文

我有以下类:

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 不是允许的默认参数吗?

I have the following class:

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_;
};

And attempt to instantiate an automatic variable like this:

AlignedMemory blah(512, 512);

This gives the following error:

src/cpfs/entry.cpp:438: error: missing template arguments before ‘blah’

What am I doing wrong? Is void not an allowed default parameter?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

捎一片雪花 2024-10-17 18:21:37

我认为你需要写:

AlignedMemory<> blah(512, 512);

参见14.3 [temp.arg] / 4:

当使用默认模板参数时,模板参数列表可以为空。在这种情况下,空的<>括号仍应用作模板参数列表

I think that you need to write:

AlignedMemory<> blah(512, 512);

See 14.3 [temp.arg] / 4:

When default template-arguments are used, a template-argument list can be empty. In that case the empty <> brackets shall still be used as the template-argument-list.

极度宠爱 2024-10-17 18:21:37

您的语法错误:

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

正确的语法是这样的:

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

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

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

PS:我确信'buf'是一个错字。您想写“blah”——变量的名称!

Your syntax is wrong:

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

Correct syntax is this:

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

The error message itself gives this hint. Look at it again:

src/cpfs/entry.cpp:438: error: missing template arguments before
‘buf’

PS: I'm sure 'buf' is a typo. You wanted to write 'blah' - the name of your variable!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文