fork download
  1. class MyClass
  2. {
  3. static int i;
  4. static
  5. {
  6. i=10;
  7. }
  8. }
  9. class Ideone
  10. {
  11. public static void main (String[] args) throws java.lang.Exception
  12. {
  13. // your code goes here
  14. MyClass mc=new MyClass () ;
  15. System.out.println(mc.i);
  16. }
  17. }
Success #stdin #stdout 0.09s 52644KB
stdin
Standard input is empty
stdout
10