ravesli/lesson_61/main.cpp

31 lines
571 B
C++
Raw Normal View History

2021-09-11 19:15:49 +00:00
/*
* main.cpp
*
* Created on: 11 сент. 2021 г.
* Author: alexander
*/
#include <iostream>
int main()
{
enum class Race
{
OGRE,
GOBLIN,
SKELETON,
ORC,
TROLL,
};
Race Rexxar(Race::OGRE);
using std::cout;
using std::endl;
// Необходимо явное преобразование, т.к. перечисление
// является классом, имеет локальную область видимости
cout << static_cast<int>(Rexxar) << endl;
return 0;
}