aspose file tools
The moose likes Beginning Java and the fly likes doubt in enum Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "doubt in enum" Watch "doubt in enum" New topic
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
    
    4
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.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: doubt in enum
 
Similar Threads
newbie's question about constructor
Enum
Doubt in method overriding in enum
Usage of Enum...
How to compile and run this enum class