일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Apache
- GIT
- hive
- Kotlin
- dataframe
- string
- list
- PySpark
- numpy
- gas
- Tkinter
- PostgreSQL
- matplotlib
- math
- Excel
- Google Spreadsheet
- Github
- 파이썬
- SQL
- Mac
- PANDAS
- c#
- django
- Python
- Google Excel
- Redshift
- google apps script
- Java
- array
- Today
- Total
목록double (2)
달나라 노트
Original source = www.w3schools.com Java의 Datatype은 다음과 같습니다. Data Type Size Description byte 1 byte Stores whole numbers from -128 to 127 short 2 bytes Stores whole numbers from -32,768 to 32,767 int 4 bytes Stores whole numbers from -2,147,483,648 to 2,147,483,647 long 8 bytes Stores whole numbers from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 float 4 bytes Stores fractional numb..
Original source = www.w3schools.com Java에는 String, int, float, double 등의 여러 자료형이 있습니다. 이번에는 이러한 자료형들의 변환은 어떻게 할 수 있는지 알아보겠습니다. Java에선 Data type을 변경할 때 자동으로 인식해서 변경되는 경우가 있으며 직접 지정을 해줘야만 바뀌는 경우도 있습니다. 그 내용은 다음과 같습니다. Automatic casting : 작은 용량의 data type에서 큰 용량의 data type으로 변경할 때 byte -> short -> char -> int -> long -> float -> double Manual casting : 큰 용량의 data type에서 작은 용량의 data type으로 변경할 때 dou..