Menu



Manage

Cord > Study_JAVA 전체 다운로드
파일 목록
Study_JAVA > 14/UtilEx.java Lines 14 | 354 바이트
다운로드

                        package week14;

public class UtilEx {
	public static void main(String[] args) {
		Box<Integer> box1 = Util.boxing(100);
		int intVal = box1.getT();
		System.out.println("box1's Value is.. " + intVal);
		
		Box<String> box2 = Util.boxing("Honguldong");
		String strVal = box2.getT();
		System.out.println("box2's Value is.. "+ strVal);
	}
}