강력한 형식의 열거형을 Int로 암시적으로 변환
C 11에 도입된 강력한 형식의 열거형은 암시적으로 정수로 변환하는 것을 방지하도록 설계되었습니다. 그러나 명시적인 형변환 없이 강력한 형식의 열거형 값을 int로 변환하려는 경우가 있을 수 있습니다.
이 문제를 해결하기 위해 다음과 같은 몇 가지 접근 방식이 제안되었습니다.
변환을 수행하는 함수를 정의할 수 있습니다. 예:
<code class="cpp">#include <iostream> struct a { enum LOCAL_A { A1, A2 }; }; template <typename E> int to_int(E e) { return static_cast<int>(e); } int main() { // Use the to_int function to convert the strongly typed enum value b::B2 to int std::cout << to_int(b::B2) << std::endl; }</code>
구문을 단순화하려면 다음과 같은 함수 템플릿을 사용할 수 있습니다. 열거형 유형을 자동으로 추론합니다:
<code class="cpp">#include <iostream> struct a { enum LOCAL_A { A1, A2 }; }; template <typename E> constexpr typename std::underlying_type<E>::type get_underlying(E e) noexcept { return static_cast<typename std::underlying_type<E>::type>(e); } int main() { // Use the get_underlying function to convert the strongly typed enum value b::B2 to int std::cout << get_underlying(b::B2) << std::endl; }</code>
또한 매크로를 활용하여 변환 프로세스를 더욱 간결하게 만들 수도 있습니다. :
<code class="cpp">#include <iostream> struct a { enum LOCAL_A { A1, A2 }; }; #define TO_INT(e) static_cast<int>(e) int main() { // Use the TO_INT macro to convert the strongly typed enum value b::B2 to int std::cout << TO_INT(b::B2) << std::endl; }</code>
명시적 형변환 없이 강력한 형식의 열거형을 정수형으로 변환하는 것이 가능하지만 이로 인해 의도하지 않은 동작이 발생할 수 있다는 점에 유의하는 것이 중요합니다. 잠재적인 문제를 피하기 위해 필요할 때마다 명시적 캐스트를 사용하는 것이 좋습니다.
위 내용은 C에서 강력한 형식의 열거형을 Int로 암시적으로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!