KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > NewArrayInit


1 public class NewArrayInit {
2
3     public static void main(String JavaDoc [] args) {
4         int [] a = new int [] { 1, 2, 3};
5     }
6 }
7
Popular Tags