Heim >Backend-Entwicklung >C++ >int const vs. const int: Sind sie in C/C äquivalent?
const int vs. int const
In C und C gibt es zwei Möglichkeiten, eine konstante Ganzzahl zu deklarieren:
Welches ist der richtige Weg? Sind sie gleichwertig?
Antwort:
Beide int const x = 3; und const int x = 3; sind gültiger Code und beide sind gleichwertig. Beide deklarieren eine konstante Ganzzahlvariable namens x mit einem Wert von 3.
Im Fall von Zeigertypen sind int const und const int jedoch nicht gleichwertig.
Das obige ist der detaillierte Inhalt vonint const vs. const int: Sind sie in C/C äquivalent?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!