Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class A {
- static int a = 10;
- static {
- System.out.println("Hi");
- }
- }
- public class B extends A {
- static int b = 20;
- static {
- System.out.println("Hello");
- }
- }
- public class Test {
- public static void main(String[] args) {
- System.out.println(B.a);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement