Bruce Eckel's Thinking in C++, 2nd Ed Contents | Prev | Next


Other class-like items

There are several other constructs in C++ that have declarations similar to the class. Each of these constructs has a different purpose. They include the “plain” structure struct, the enumerated data type enum and the space-saving union.

Contents | Prev | Next