構造コンストラクターで列挙型を設定しようとしていますが、正しい構文を取得できません。何か提案はありますか?これは私が持っているものですが、エラーが発生し続けます。
struct Event{
enum eventType { Arrival, CPUburstCompletion, IOcompletion, TimerExpired }enumField;
double time; // Defined as time units since the start of the simulation
Event(eventType e, double theTime): enumField(e), time(theTime){}
};