What is the abstraction?
No Answer is Posted For this Question
Be the First to Post Answer
Why do people says “java is robust”?
What methodology can be utilized to link to a database?
What is javac_g?
What is the difference between length and size in java?
What is final, finally, finalize?
WHAT IS THE MEANING OF ALL TYPE OF BUZZWORDS?
Implementations of set interface?
Can we override a variable in java?
What is the purpose of the enableevents() method?
When do you create an index?
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 are streams?