C++-Programmierung: Schlüsselwörter

Aus Wikibooks

Wechseln zu: Navigation, Suche

Typumwandlung (Casting)

class type_info{
public:
    virtual ~type_info();

    bool operator==(type_info const&)const;
    bool operator!=(type_info const&)const;
    bool before(type_info const&)const;

    char const* name()const;

private:
    type_info(type_info const&);
    type_info& operator=(type_info const&);
};
  • typename && explicite Angabe eines Bezeichners als Typename
  • union
  • unsigned
  • using
  • virtual
  • void
  • volatile - Variablen die als volatile deklariert wurden, können Ihren Wert ändern, ohne das der Compiler es mitbekommt (Compiler nimmt also keine "harten" Optimierungen vor, sondern fragt immer neu den aktuellen Wert ab)
  • wchar_t
  • while


Go-up.svg Hoch zu Inhaltsverzeichnis
Persönliche Werkzeuge