자바 데이터 타입
Type | size | Default | Min | Max |
---|---|---|---|---|
byte | 8-bit | 0 | -128 | 127 |
short | 16-bit | 0 | -32,768 | 32,767 |
int | 32-bit | 0 | 2-31 | 231-1 |
long | 64-bit | 0L | -263 | 264-1 |
float | 32-bit | 0.0f | ||
double | 64-bit | 0.0d | ||
boolean | isn't precisely defined. | false | ||
char | 16-bit | '\u0000' | '\u0000' | '\uffff' |
참고자료 - https://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html
'Spring Boot' 카테고리의 다른 글
Elasticsearch read (0) | 2023.04.30 |
---|---|
Elasticsearch indexing(Data insert) (0) | 2023.04.28 |
Elasticsearch index 생성 (0) | 2023.04.27 |
Spring Boot를 이용한 서버 자원 모니터링 프로그램 (0) | 2023.03.27 |
Spring Boot란? (0) | 2023.03.15 |