Alte Seite
Diese Seite gehört zum alten Teil des Buches und wird nicht mehr gewartet. Die Inhalte sollen in das neue Buch einfließen: C++-Programmierung/ Inhaltsverzeichnis.

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 dass der Compiler es mitbekommt (Compiler nimmt also keine "harten" Optimierungen vor, sondern fragt immer neu den aktuellen Wert ab)
  • wchar_t
  • while


This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.