Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » Konstanten in switch-Anweisungen

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
19.11.2004, 16:50 Uhr
BartS



Hallo,

ich wollte eine einfache switch-Anweisung programmieren:


Code:

int xyz = 5;
int abb = 1;

switch (dataType) //dataType ist auch ein int
{
    case xyz:
        ...
    case abc:
        ...    
}



Aber es kommt die Fehlermeldung, dass xyz bzw. abc keine Konstanten seien ...
Wie kann das sein? Kann ich mit einer switch-Anweisung nur dann arbeiten, wenn ich wirklich explizit die Zahlen beim case angebe?

Habt vielen Dank
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
19.11.2004, 17:13 Uhr
KaraHead



Man kann mit einer switch-anweisung nur ganzzahlige werte verarbeiten, wie z.B. integer, byte, char. Aber nicht string.


C++:
switch(c){ //c enthält ein zeichen, das bekanntlich mit int werten im ASCII standard festgelegt ist
  case 'y': exit(1);break;
  case 'n': to-code; break;
};

 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
19.11.2004, 17:20 Uhr
virtual
Sexiest Bit alive
(Operator)


@BartS

Die Ausdrücke sind doch garnicht konstant: abc und xyz sind Variablen.
const int abc;
const int xyz;

Wären was konstantes
--
Gruß, virtual
Quote of the Month
Ich eß' nur was ein Gesicht hat (Creme 21)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (ANSI-Standard) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: