Is set ordered?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between a static and a non-static inner class in java programming?
What is constructor and its types?
How many types of literals are there in JAVA?
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 e java?
What is method in research paper?
What kind of variables can a class consist?
Is java a super set of javascript?
What is instance means in java?
Explain differences between collection api and stream api?
Can we instantiate interface in java?
Explain about automatic type conversion in java?