C++0x decltype 和范围解析运算符

发布于 2024-10-29 17:27:27 字数 350 浏览 2 评论 0原文

对于像 Foo: 这样的类,

struct Foo { static const int i = 9; };

我发现 GCC 4.5 将拒绝以下内容

Foo f;
int x = decltype(f)::i;

如果我使用中间 typedef,它将起作用,例如:

typedef decltype(f) ftype;
int x = ftype::i;

但我更喜欢保持命名空间干净。我认为优先级可能是一个问题,所以我也尝试过括号,但没有运气。这是不可能的,还是有一段语法可以帮助我?

With a class such as Foo:

struct Foo { static const int i = 9; };

I find that GCC 4.5 will reject the following

Foo f;
int x = decltype(f)::i;

It will work if I use an intermediate typedef, such as:

typedef decltype(f) ftype;
int x = ftype::i;

but I prefer to keep the namespace clean. I thought precedence may be an issue, so I've also tried parentheses, but no luck. Is it impossible as presented, or is there a piece of syntax that can help me?

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

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

发布评论

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

评论(1

隔纱相望 2024-11-05 17:27:27

decltype(f)::i 是有效的 C++0x。 GCC 只是还不支持它。您可以使用身份模板来解决这个问题

template<typename T> struct identity { typedef T type; };
int x = identity<decltype(f)>::type::i;

identityboost::mpl 命名空间的一部分。

It is valid C++0x to say decltype(f)::i. GCC just doesn't support it yet. You can work it around with an identity template

template<typename T> struct identity { typedef T type; };
int x = identity<decltype(f)>::type::i;

identity is part of the boost::mpl namespace.

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