其他分享
首页 > 其他分享> > c – 使用stid :: forward和typeid运算符是否有意义?

c – 使用stid :: forward和typeid运算符是否有意义?

作者:互联网

我想知道使用std :: forward<>是否有意义什么时候向typeid提交实例?

template <typename T>
void foo(T&& value) {
  std::cout << typeid(std::forward<T>(value)).name() << std::endl;
}

调用typeid(value)会产生相同的结果吗?

解决方法:

来自[expr.typeid] / 3:

When typeid is applied to an expression other than a glvalue of a polymorphic class type, the result refers to a std::type_info object representing the static type of the expression.

在C标准中,“表达式的类型”永远不是引用类型;表达式的“reference-ness”(左值或右值引用)以其值类别表示.由于std :: forward不修改表达式的类型,只修改其值类别(例如从lvalue到rvalue),因此应用std :: forward不会影响typeid的结果.

标签:perfect-forwarding,c,c11,rtti
来源: https://codeday.me/bug/20190725/1529300.html