c – decltype的行为

前端之家收集整理的这篇文章主要介绍了c – decltype的行为前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
说我有一些stl容器类obj的对象.我可以这样定义相同类型的其他对象:
decltype(obj) obj2;

但是我不能通过这种方式为容器声明迭代器:

decltype(obj)::iterator it = obj.begin();

为什么?我做错了吗?

解决方法

根据最终的C 0x草案(FDIS),您的代码格式良好.这是一个尚未由Visual Studio编译器实现的延迟更改.

在此期间,解决方法是使用typedef:

typedef decltype(obj) obj_type;
obj_type::iterator it = obj.begin();

编辑:相关章节5.1.1 / 8:

qualified-id:
    [...]
    nested-name-specifier templateopt unqualified-id

nested-name-specifier:
    [...]
    decltype-specifier ::

decltype-specifier:
    decltype ( expression )

为了完整起见:

The original core issue

Proposal for wording

原文链接:https://www.f2er.com/c/113590.html

猜你在找的C&C++相关文章