Menu



Manage

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

                        package week14;

public class BoxEx {
	public static void main(String[] args) {
		Box<String> box = new Box<>();
		box.setT("Hello");
		String str = box.getT();
		
		System.out.println("str = " + str);
		
		Box<Integer> box2 = new Box<>();
		box2.setT(100);
		System.out.println(box2.getT());
	}
}