| Author |
doubt in enum
|
Pradeep Kumar
Ranch Hand
Joined: Sep 11, 2007
Posts: 77
|
|
Hi ranchers, When declaring an enum why is that we have to define the constructor only after defining the enum constants. If we try defining the constructor before the enum constants we get a compile time error. Can someone explain me this. For ex: //Code that throws compile time error // Code that works fine. Thanks and Best Regards, Pradeep
|
SCJP 1.6
|
 |
Venkata Kumar
Ranch Hand
Joined: Apr 16, 2008
Posts: 110
|
|
|
Java requires that Enum constants should be declared first prior any fields , constructor, methods. The constructor automatically creates the constants that are defined at the beginning of the Enum body.
|
SCJP 5.0, SCWCD 5, preparing for SCDJWS
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32599
|
|
That is the way the grammar specifies it. Whoever designed that decided you need to enumerate the possible members before writing the class body. Don't know any more, but look at the Java Language Specification link I gave you.
|
 |
Pradeep Kumar
Ranch Hand
Joined: Sep 11, 2007
Posts: 77
|
|
|
thanks for the answer.
|
 |
 |
|
|
subject: doubt in enum
|
|
|