1 public class LocalArrayInit {2 3 public static void main (String [] args){4 5 int [] a = {1 , 2, 3};6 a = new int [] {1 ,2 ,3};7 }8 }9