When a class declares only private instance constructors, it is not possible for other classes to derive from that class or to create instances of that class (an exception being classes nested within that class). [Example: Private instance constructors are commonly used in classes that contain only static members. For example: The Trig class groups related methods and constants, but is not intended to be instantiated. Therefore, it declares a single empty private instance constructor. end example] At least one instance constructor must be declared to suppress the automatic generation of a default constructor.