Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 C++11 5.1 Primary Expressions 中它指出:
[an id-expression] 的类型是标识符的类型。结果是标识符表示的实体。如果实体是函数、变量或数据成员,则结果为左值,否则为纯右值。
什么是作为纯右值的 id 表达式的示例?
(也就是说,一个 id-expression 引用的实体不是函数、不是变量也不是数据成员的示例是什么?)
它可以是一个枚举器。...