일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Emmet
- webstorm
- 네이버 클라우드 플랫폼
- 음료같은녹즙
- React Native
- eslint-import-resolver-typescript
- code 설치
- GitHub 미러링
- GitLab미러링
- settings sync
- 프리티어
- 실행시간 측정
- code 세팅
- react native #gradle
- visual studio code cli
- '티스토리 초대장/ 티스토리초대'
- 유니옥션
- visual studio code
- 티스토리 초대장
- currentTimeMillis
- Path Alias
- gitlab 연동
- 니돈내먹
- GitLab Mirroring
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- code .
- GitHub Mirroring
- 티스토리 초대장/ 티스토리초대
- 티스토리초대
- 초대장
Archives
- Today
- Total
방치하기
홍대 자바 수업 ,Wrapper 클래스 기본형 대신 레퍼런스 형 +오토 (언)박싱 +2,8,16진수 변환 본문
반응형
class WrapperTest
{
public static void main(String[] args)
{
Integer num01 =new Integer(10);
Integer num02 =new Integer("20");
int n01=num01.intValue(); //기본형 데이터로 강제적 변환
int n02=num02.intValue();
int sum=n01+n02;
System.out.println(sum);
System.out.println(Integer.toBinaryString(sum));
System.out.println(Integer.toOctalString(sum));
System.out.println(Integer.toHexString(sum));//다 문자열로 반환 시켜주는 메소드
/*2번 int n01=10 ,n02;
Integer num01;
Integer num02 =new Integer(20); //객체생성
num01=n01; //오토 박싱
n02=num02;//오토 언박싱
System.out.println(num01+num02);
System.out.println(n01+n02);*/
}
}
반응형
'홍익대 Java > 수업' 카테고리의 다른 글
홍대 자바수업 String 클래스 (0) | 2009.07.27 |
---|---|
홍대 자바 수업 핵심:char [] arr=str.toCharArray(); String ->char [] 로 (0) | 2009.07.27 |
홍대 자바 수업 : 객체의 수를 제한하는 방법론적. (0) | 2009.07.24 |
홍대 자바 수업 .도서관 객체 . 인터페이스 와 상속 (0) | 2009.07.24 |
홍대 수업 자바 한글 스트링 인식해서 갯수 세주기 str.getBytes().length; (0) | 2009.07.24 |
Comments