(int x)
| 3 | class staticFunc { |
| 4 | static int a = 5, b; |
| 5 | static void method(int x) { |
| 6 | System.out.println("x = " + x); |
| 7 | System.out.println("a = " + a); |
| 8 | System.out.println("b = " + b); |
| 9 | } |
| 10 | static { |
| 11 | System.out.println("Static block"); |
| 12 | b = a * 10; |