Creation of Static Array Posted on October 8, 2012 by admin | Leave a reply static final int[] a = { 100,200 }; static final int[] a; static { a=new int[2]; a[0]=100; a[1]=200; }