public class LocalArrayInit { public static void main (String [] args){ int [] a = {1 , 2, 3}; a = new int [] {1 ,2 ,3}; } }