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.
在以下示例中:
extern bool b1; bool b2(b1);
初始化表达式b1是一个左值 bool。
b1
左值到右值的转换是否应用于它以在用于初始化之前将其转换为纯右值b2?这在标准中的什么地方规定?
b2
是的,执行左值到右值的转换。通过非类类型的表达式初始化非引用非类类型需要prvalue。
这很难从标准文本中明确确定,除非假设两种情况,然后意识到否定的答案会破坏许多其他规则(请参阅 odr-use 和常量表达式)。将表达式 e 转换为 T 类型以及通过表达式 e 初始化 T 类型变量的定义在第 4 节和第 8.5 节的序言之间几乎是循环的。