Is void a return type?
No Answer is Posted For this Question
Be the First to Post Answer
Explain java coding standards for methods?
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 a byte string?
How can u increase the heap size in the memory?
What is use of arraylist in java?
What classes of exceptions may be thrown by a throw statement?
Define an abstract class with reference to java.
What does += mean coding?
When do I need to use reflection feature in java?
What is a nested structure?
What is hypertext?
What Is Pointer?