DekGenius.com
Team LiB   Previous Section   Next Section
struct keyword Declares class with public members

class-key := struct

The struct keyword declares a class that has public access by default. Inheritance is also public by default. See class for syntax rules.

Example

struct point {
  int x, y;
};
struct point p1; // "struct" is redundant here.
point p2;

See Also

class, union, Chapter 6

    Team LiB   Previous Section   Next Section