How are the elements of a gridbaglayout organized?
No Answer is Posted For this Question
Be the First to Post Answer
What is a method ?
What is a data structure java?
How do you replace all in word?
What is a private class in java?
What is an eror in java?
What are null interfaces? Give some examples?
Is java a software?
Print Vertical traversal of a Binary Tree.
What is the impact of declaring a method as final?
What is better- service oriented or batch oriented solutions?
Why does it take so much time to access an applet having swing components the first time?
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