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
}
}
Sun certification level tutorial and examples Organized by topic.
enum Month
{
Jan,Feb,Mar,Apr;
}
class EnumSample
{
public static void main(String arg[])
{
Month m=Month.Mar;
System.out.println(m); // Mar
}
}
Thank you for visiting Java Examples.For regular updates request you to subscribe to my RSS Feed or register your Email Subscription for updates directly into your mail box.
0 comments:
Post a Comment