निम्नलिखित कोड के लिए, सभी अंतिम पुष्टि गुजरती है:
template<typename T>
constexpr void assert_static_cast_identity() {
using T_cast = decltype(static_cast<T>(std::declval<T>()));
static_assert(std::is_same_v<T_cast, T>);
}
int main() {
assert_static_cast_identity<int>();
assert_static_cast_identity<int&>();
assert_static_cast_identity<int&&>();
// assert_static_cast_identity<int(int)>(); // illegal cast
assert_static_cast_identity<int (&)(int)>();
assert_static_cast_identity<int (&&)(int)>(); // static assert fails
}
यह अंतिम दावा क्यों विफल हो रहा है, और static_cast<T>
हमेशा नहीं लौट रहा है T
?
T_cast i{1};
हूंinvalid initialization of non-const reference of type 'T_cast' {aka 'int (&)(int)'} from an rvalue of type '<brace-enclosed initializer list>'
, इसलिए जो भी कारणT_cast
है एक केint (&)(int)
बजायint (&&)(int)
।