Czy klasę wyliczenia można przekonwertować na typ bazowy?


112

Czy istnieje sposób na przekonwertowanie enum classpola na typ bazowy? Myślałem, że to będzie automatyczne, ale najwyraźniej nie.

enum class my_fields : unsigned { field = 1 };

unsigned a = my_fields::field;

To przypisanie jest odrzucane przez GCC. error: cannot convert 'my_fields' to 'unsigned int' in assignment.


4
Jeśli chcesz przekonwertować na typ bazowy, użyj enum.
Pubby

1
FYI, ta zasada jest zdefiniowana w [C++11: 7.2/9].
Wyścigi lekkości na orbicie

5
@Pubby Niestety, „enum” bez zakresu zanieczyszcza zakres zewnętrzny wszystkimi elementami wyliczającymi. Niestety, nie ma najlepszego z obu światów (w każdym razie od C ++ 14), które czysto zagnieżdżają zakres, jednocześnie niejawnie konwertując do typu podstawowego (co jest raczej niespójne z tym, jak C ++ obsługuje inne dziedziczenie klas, gdy przekazujesz bardziej pochodny typ przez wartość lub odwołanie do funkcji przyjmującej typ bazowy).
Dwayne Robinson

2
@DwayneRobinson Tak, jest. Umieść wyliczenie bez zakresu wewnątrz struktury lub (bardziej korzystnie) przestrzeni nazw. W związku z tym jest objęty zakresem i nadal ma niejawną konwersję int. (Chociaż z pewnością zastanowiłbym się dwa razy, dlaczego musisz przejść na int i być może zastanowić się, czy istnieje lepsze podejście.)
Pharap

Odpowiedzi:


178

Myślę, że możesz użyć std :: Base_type, aby poznać podstawowy typ, a następnie użyć rzutowania:

#include <type_traits> //for std::underlying_type

typedef std::underlying_type<my_fields>::type utype;

utype a = static_cast<utype>(my_fields::field);

Dzięki temu nie musisz zakładać typu bazowego lub nie musisz wspominać o tym w definicji czegoś enum classpodobnego enum class my_fields : int { .... }.

Możesz nawet napisać ogólną funkcję konwertującą, która powinna być w stanie przekonwertować dowolny enum class na jego podstawowy typ całkowity :

template<typename E>
constexpr auto to_integral(E e) -> typename std::underlying_type<E>::type 
{
   return static_cast<typename std::underlying_type<E>::type>(e);
}

następnie użyj go:

auto value = to_integral(my_fields::field);

auto redValue = to_integral(Color::Red);//where Color is an enum class!

A ponieważ funkcja jest zadeklarowana jako constexpr, możesz jej użyć tam, gdzie wymagane jest wyrażenie stałe:

int a[to_integral(my_fields::field)]; //declaring an array

std::array<int, to_integral(my_fields::field)> b; //better!

Teraz, gdy jesteśmy w przyszłości:template <typename T> auto to_integral(T e) { return static_cast<std::underlying_type_t<T>>(e); }
Ryan Haining

1
@RyanHaining: Dzięki. (Swoją constexprdrogą , ty też masz w przyszłości; w rzeczywistości dużo potężniejszy niż ten, który miałem w 2013: P)
Nawaz

41

Nie można go przekonwertować niejawnie , ale możliwe jest jawne rzutowanie:

enum class my_fields : unsigned { field = 1 };

// ...

unsigned x = my_fields::field; // ERROR!
unsigned x = static_cast<unsigned>(my_fields::field); // OK

Pamiętaj również, że średnik powinien znajdować się po zamkniętym nawiasie klamrowym w definicji wyliczenia, a nie przed.


0

Uważam, że następująca funkcja jest underlying_castprzydatna, gdy trzeba poprawnie serializować wartości wyliczenia.

namespace util
{

namespace detail
{
    template <typename E>
    using UnderlyingType = typename std::underlying_type<E>::type;

    template <typename E>
    using EnumTypesOnly = typename std::enable_if<std::is_enum<E>::value, E>::type;

}   // namespace util.detail


template <typename E, typename = detail::EnumTypesOnly<E>>
constexpr detail::UnderlyingType<E> underlying_cast(E e) {
    return static_cast<detail::UnderlyingType<E>>(e);
}

}   // namespace util

enum SomeEnum : uint16_t { A, B };

void write(SomeEnum /*e*/) {
    std::cout << "SomeEnum!\n";
}

void write(uint16_t /*v*/) {
    std::cout << "uint16_t!\n";
}

int main(int argc, char* argv[]) {
    SomeEnum e = B;
    write(util::underlying_cast(e));
    return 0;
}

0

Jak zauważyli inni, nie ma niejawnego rzutowania, ale możesz użyć jawnego static_cast. Używam następujących funkcji pomocniczych w moim kodzie, aby konwertować do iz typu wyliczeniowego i jego klasy bazowej.

    template<typename EnumType>
    constexpr inline decltype(auto) getIntegralEnumValue(EnumType enumValue)
    {
        static_assert(std::is_enum<EnumType>::value,"Enum type required");
        using EnumValueType = std::underlying_type_t<EnumType>;
        return static_cast<EnumValueType>(enumValue);
    }

    template<typename EnumType,typename IntegralType>
    constexpr inline EnumType toEnum(IntegralType value)
    {
        static_assert(std::is_enum<EnumType>::value,"Enum type required");
        static_assert(std::is_integral<IntegralType>::value, "Integer required");
        return static_cast<EnumType>(value);
    }

    template<typename EnumType,typename UnaryFunction>
    constexpr inline void setIntegralEnumValue(EnumType& enumValue, UnaryFunction integralWritingFunction)
    {
        // Since using reinterpret_cast on reference to underlying enum type is UB must declare underlying type value and write to it and then cast it to enum type
        // See discussion on /programming/19476818/is-it-safe-to-reinterpret-cast-an-enum-class-variable-to-a-reference-of-the-unde

        static_assert(std::is_enum<EnumType>::value,"Enum type required");

        auto enumIntegralValue = getIntegralEnumValue(enumValue);
        integralWritingFunction(enumIntegralValue);
        enumValue = toEnum<EnumType>(enumIntegralValue);
    }

Kod użytkowania

enum class MyEnum {
   first = 1,
   second
};

MyEnum myEnum = MyEnum::first;
std::cout << getIntegralEnumValue(myEnum); // prints 1

MyEnum convertedEnum = toEnum(1);

setIntegralEnumValue(convertedEnum,[](auto& integralValue) { ++integralValue; });
std::cout << getIntegralEnumValue(convertedEnum); // prints 2
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.