Java/Excercise

WrapperEx2

낭구리 2021. 9. 2. 17:58
package ch01;

public class Wrapper_Ex2 {

	public static void main(String[] args) {

		Integer num = 17; //int타입이 아니지만 num에 담을 수있게 이클립스가 조정 (자동박싱)
		int n = num; //자동 언박싱
		Integer num2 = new Integer(n);
		//integer 를 int로 
		System.out.println(n);
	}

}

'Java > Excercise' 카테고리의 다른 글

swing ch02 FlowLayoutEx  (0) 2021.09.02
WrapperEx3  (0) 2021.09.02
WrapperEx1  (0) 2021.09.02
object ch03 Define  (0) 2021.09.02
object ch02 StringTest2  (0) 2021.09.02