Abraxas/ECS C++ Home  Table of Contents 

Module - 15.html

ABRAXAS SOFTWARE - CodeCheck ECS C++ Test-Suite ECS C++.

ECS C++-C Test Suite for Module - 15.cpp

//15. Pluralize the names of collections.

template  class list ;
class Shape {
public:
};
typedef list Shapes;
Shapes 	shape;		// single, singular
Shapes 	shapes[10];	// multiple, plual
Shape	array[10];	// BAD multipe, no plural 

Abraxas/ECS C++ Home  Table of Contents

ABRAXAS SOFTWARE - CodeCheck ECS C++ Test-Suite ECS C++