What is constructor chaining and how is it achieved in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is the name of the java compiler?
what is platform independence in java?
What is Java Shutdown Hook?
What is the difference between abstraction and encapsulation?
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
how to connect one jsp page to another jsp page????
Why we use methods in java?
What is use of valueof () in java?
What is the difference between I ++ and ++ I in java?
Explain reverse a linked list iterative solution in java?
Can we create a constructor in abstract class?
Explain java code for recursive solution's base case?