Skip to content

Instantly share code, notes, and snippets.

@mhubig
Created June 24, 2010 11:45
Show Gist options
  • Save mhubig/451347 to your computer and use it in GitHub Desktop.
Save mhubig/451347 to your computer and use it in GitHub Desktop.
/*
Konstanten "Variablen"
Bsp.: const int maxPlayers;
Mit const wird eine Variable als "nicht schreibbar" deklariert.
Zuweisungen sind nicht möglich. Jede const-Variable muß initialisiert
werden, mit "=" oder mit einem Konstruktor.
Bsp.: const int maxPlayers = 2;
Typprüfung bei Zuweisung.
*/
struct point p;
const struct Point t;
p = t; /* Geht nicht! */
t = p; /* Geht! */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment