자바 자료형 정리
자료형 데이터 메모리 크기 boolean 참과 거짓 1 byte char 문자 2 byte byte 정수 1 byte short 2 byte int 4 byte long 8 byte float 실수 4 byte double 8 byte 정수 : byte, short, int, long실수 : float(소수점 이하 6자리), double(소수점 이하 12자리) -> 정밀도의 차이문자 : char참/거짓 : boolean (true와 false의 저장을 위한 자료형 boolean)
JAVA
2015. 5. 4. 18:36
자바 기초 공부 링크 주소
http://opentutorials.org/module/516
JAVA
2015. 1. 13. 18:47