Package Index Table of Contents
//15. Pluralize the names of collections.
templateclass list ;
class Shape {
public:
};
typedef listShapes;
Shapes shape; // single, singular
Shapes shapes[10]; // multiple, plual
Shape array[10]; // BAD multipe, no plural
Package Index Table of Contents