What is the arraylist in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is methods and methodology?
What is method overloading with type promotion?
How do you convert string to int in java?
How do you reverse a string in java?
What is a databasemetadata?
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
Can we inherit inner class?
Is oracle java 11 free?
WHAT IS JDK,JVM,CLASS DEFINE ALL?
How do you escape json?
What is the differnence between String Buffer and String builder despite having knowledge that String builder is faster than String Buffer and last one is threadsafe.please tell another important difference.
Why all programming languages have main as a execution starting point?