일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- elasticsearch
- ReactJS
- MySQL
- Web Server
- linux
- Design Patterns
- redis
- php
- jenkins
- ubuntu
- JVM
- AWS
- Oracle
- Spring Batch
- devops
- it
- Git
- springboot
- db
- tool
- laravel
- Gradle
- 맛집
- Spring Boot
- jsp
- Spring
- java
- IntelliJ
- javascript
- 요리
Archives
- Today
- Total
아무거나
Wrapper 클래스 본문
반응형
[Wrapper 클래스]
Wrapper클래스는 기초데이터를 객체데이터로 변화시키는 클래스
- 기초데이터 : 기초데이터는 데이터가 직접 메모리에 들어가는 방식
- 객체데이터 : 데이터가 갖고있는 메모리의 주소값을 가리키는 주소값이 들어가있다.
ex) Integer integer = new Integer(234);
int i = integer.intValue();
System.out.println(i); // 234
기초데이터 | 객체데이터
byte | Byte
short | Short
int | Integer
long | Long
double | Double
float | Float
boolean | Boolean
char | Character
반응형
'Java & Kotlin > Java' 카테고리의 다른 글
StringTokenizer 클래스 (0) | 2019.08.16 |
---|---|
Timer 클래스 (0) | 2019.08.16 |
Scanner 및 Sysout (0) | 2019.08.12 |
Random 클래스 (0) | 2019.08.12 |
Calendar api (0) | 2019.08.12 |
Comments