8월 2일 - (java) 배열의 예제
// 배열의 예제 public class JavaEx17 { public static void main(String[] args) { int arrPriInt[] = { 1, 2, 3, 4, 5 }; // 1차원(Dimension) 배열을 선언과 동시에 할당(대입) // int arrPriInt[] = new int[5]; // 1차원(Dimension) 배열을 선언과 동시에 할당(대입) // 배열의 크기(length) System.out.println("배열 arrPriInt의 크기 : " + arrPriInt.length); // 구성요소(element) 갯수, 배열의 크기 ; // ex) for문의 한계치 for (int i=0; i Object 배열(자동적으로 형변환 : casting) Syste..
IT & programming/Java
2012. 8. 2. 14:55