next up previous contents index
Nächste Seite: 2.2.2 Gleitkommakonstanten Aufwärts: 2.2 Konstanten Vorherige Seite: 2.2 Konstanten   Inhalt   Index


2.2.1 Integerkonstanten

Dezimalkonstanten (Basis 10):
   100        // int;     100
   512L       // long;    512
   128053     // long; 128053

Oktalkonstanten (Basis 8):
   020        // int;      16
   01000L     // long;    512
   0177       // int;     127

Hexadezimalkonstanten (Basis 16):
   0x15       // int;      21
   0x200      // int;     512
   0x1ffffl   // long; 131071


Gundolf Haase 2004-01-15