Java Examples
Sun certification level tutorial and examples Organized by topic.
Monday, March 2, 2009
enum source code
enum
Month
{
Jan,Feb,Mar,Apr;
}
class
EnumSample
{
public static void
main(String arg[])
{
Month m=Month.Mar;
System.out.println(m);
// Mar
}
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment