c++。编译错误。我正在尝试使用枚举模板参数添加朋友模板函数

发布于 2024-09-24 13:08:22 字数 278 浏览 7 评论 0原文

请帮助编写下一个代码:

typedef enum {a1, a2, a3} E;

template<E e>
int foo() {
    return static_cast<int>(e);
}

class A {
    A() {};

    friend int foo<E e>();
};

编译器说:错误C2146:语法错误:标识符“e”之前缺少“,”

如果有人可以解释我的错误,我会很高兴。 谢谢。

Please help with the next code:

typedef enum {a1, a2, a3} E;

template<E e>
int foo() {
    return static_cast<int>(e);
}

class A {
    A() {};

    friend int foo<E e>();
};

The compiler says: error C2146: syntax erorr: missing "," before identifier "e"

I would be glad if someone could explain my mistake.
Thanks.

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

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

发布评论

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

评论(1

℡Ms空城旧梦 2024-10-01 13:08:22

如果您希望类 A 与函数模板 foo() 成为好友,您需要使用:

template <E> friend int foo();

您还可以与函数模板 foo() 的特定实例成为好友:

friend int foo<a1>();

If you want class A to befriend the function template foo(), you need to use:

template <E> friend int foo();

You can also befriend a particular instantiation of the function template foo():

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