On 2/17/13, Steven Schveighoffer <schveiguy at yahoo.com> wrote:
> A class that can't be instantiated has a private constructor.
An alternative to that is:
final abstract class C
{
static:
}
You can't derive from it and you can't instantiate it.