Date類中聲明一個枚舉變量
public:enum Month{jan=1,feb,mar,apr,may,jun,jul,aug,sep,oct,nov,dec};
Date(int,Month,int);
主函數中聲明一個Date類變量的時候
My_Code::Date b(2,jan,1992);
會報錯,說jan是聲明的標識符?參數2如何寫是正確的?
自己搞懂了
My_Code::Date b(2,(My_Code::Month)9,1992);
b.Show();