在 C 中,强类型枚举比传统枚举具有更高的类型安全性。然而,与传统枚举不同的是,强类型枚举不能隐式转换为整数类型。
要将强类型枚举值 E 转换为整数类型,需要显式转换,如:
<code class="cpp">int i = static_cast<int>(b::B2);</code>
但是,如果枚举的底层类型未知,则可以使用以下模板函数:
<code class="cpp">template <typename E> constexpr typename std::underlying_type<E>::type to_underlying(E e) noexcept { return static_cast<typename std::underlying_type<E>::type>(e); }</code>
现在,可以在不显式指定底层类型的情况下执行转换:
<code class="cpp">std::cout << foo(to_underlying(b::B2)) << std::endl;</code>
需要注意的是,此转换仅适用于强类型枚举的值。如果向 to_underlying() 提供传统的枚举值,则会引发错误。
以上是如何在 C 中将强类型枚举显式转换为整数?的详细内容。更多信息请关注PHP中文网其他相关文章!