enumType 変数を使用して現在の状態を取得したい。しかし、これらのコードでは値を取得できません..たとえば、enumType = 3状態の場合はクロールする必要があります...
#include <iostream>
#include <windows.h>
#include <ctime>
using namespace std;
int main()
{
int enumType;
srand((unsigned)time(0));
enumType = rand()%3;
enum state{
stand,
walk,
run,
crawl,
};
state currentState;
(int)currentState =enumType;
cout<<state.currentState;
system("pause");
return 0;
}