posted 19 years ago
The only class you can declare static is a member class...
And this member class can be instantiated only in the context of the class which the member belongs to. If you want to avoid this , you can
declare the member class as static and you can use this class the same way as you do the top level (to which the member class belongs) class..
i.e the member class becomes a nested top level class..