Can we overload the methods by making them static?
No Answer is Posted For this Question
Be the First to Post Answer
What is consumer interface?
Can a for statement loop indefinitely?
int a=1; float b=1.0; System.out.println(a==b);
13 Answers CTS, Honeywell, McAfee,
what is the difference b/w design pattern and architecture
hi to all,i have a question on static block. i saved below as test.java class test extends a { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p as static test static but if i change base class as test class then class test { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a extends test { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p test static explain me why "a static" wasn't print in second code when it is in derived class
what is translator and it types
how to handle exceptions in ejb?
Can java list contain duplicates?
Can you tell me range of byte?
Give some features of interface?
What is a qualifier in a sentence?
what are three ways in which a thread can enter the waiting state? Or what are different ways in which a thread can enter the waiting state? : Java thread