Hallo!
Ist es Möglich in C++ Enums als Index von Arrays zu benutzen?
Beispiel:
enum Autos {Ford, Porsche, VW} Auto;
int Preis[Autos];
Auto=Ford;
Preis[Auto]=16000;
funktioniert nicht.
Kann man das Problem umgehen ohne Integer als Index zu verwenden?
Falk