Why is `decltype(static_cast(…))` not always `T`?

前端 未结 1 723
孤独总比滥情好
孤独总比滥情好 2021-02-06 23:41

For the following code, all but the last assertion passes:

template
constexpr void assert_static_cast_identity() {
    using T_cast = decltype(         


        
1条回答
  •  离开以前
    2021-02-07 00:32

    This is hard-coded in the definition of static_cast:

    [expr.static.cast] (emphasis mine)

    1 The result of the expression static_­cast(v) is the result of converting the expression v to type T. If T is an lvalue reference type or an rvalue reference to function type, the result is an lvalue; if T is an rvalue reference to object type, the result is an xvalue; otherwise, the result is a prvalue. The static_­cast operator shall not cast away constness.

    decltype respects the value category of its operand, and produces an lvalue reference for lvalue expressions.

    The reasoning may be due to function names themselves always being lvalues, and so an rvalue of a function type cannot appear "in the wild". As such, casting to that type probably makes little sense.

    0 讨论(0)
提交回复
热议问题