| Author |
static class
|
surekha Nidadavolu
Greenhorn
Joined: Apr 15, 2005
Posts: 6
|
|
|
Why a class cannot be static?
|
 |
Georgy Bolyuba
Ranch Hand
Joined: Feb 18, 2005
Posts: 162
|
|
And why not? It can be static. class B is static.
|
SCJP 1.4 (100%) Done.<br />SCJD (URLyBird 1.2.3 Started)
|
 |
Nidhi Dave
Greenhorn
Joined: Sep 06, 2005
Posts: 3
|
|
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..
|
 |
surekha Nidadavolu
Greenhorn
Joined: Apr 15, 2005
Posts: 6
|
|
I want to know why the super class cannot be static at all...Can u pls give me an answer for this question.. Surekha :
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24051
|
|
|
You want to know why a top-level class can't be static? OK, I'll tell you -- but first you have to explain to me what that would mean. What would "public static class" mean, exactly, and how would it be different from "public class", for a top-level class?
|
[Jess in Action][AskingGoodQuestions]
|
 |
 |
|
|
subject: static class
|
|
|