Java/Excercise

WrapperEx1

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

public class Wrapper_Ex1 {

	public static void main(String[] args) {

		Integer num = new Integer(20);//래퍼클래스(박싱) 
		//        가운데 줄이 그어진건 deplecate로 다음 버전에 삭제될 명령어
		Number n1 = 10;
		
		int n = num.intValue(); //언박싱
		System.out.println(n);
	}

}

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

WrapperEx3  (0) 2021.09.02
WrapperEx2  (0) 2021.09.02
object ch03 Define  (0) 2021.09.02
object ch02 StringTest2  (0) 2021.09.02
object ch02 StringTest1  (0) 2021.09.02