반응형
참조형
-
[JAVA 10] 자바 변수(Variable) ② 메모리 참조 방식 <기본형 / 참조형>Language/Java 2018. 2. 4. 20:04
2. 메모리 참조 방식 기본형 변수 ( Primitive Type )1) Call by value 2) 첫글자가 소문자 3) 종류byte(1) → short(2) → int(4) → long(8) → float(4) → double(8) → char(2) →boolean(1) cf) 자동 형변환 : (boolean을 제외한) 범위가 작은 타입 → 큰타입 (왼쪽 → 오른쪽) ┐[ error : incompatible types: possible lossy conversion from int to short ]에러 : 공존할 수 없는 타입 : int 에서 byte 로 전환시에 파일 정보가 손실될 수 있다. (함께 쓸 수 없는 타입) int 에서 short 로(호환성이 없는 타입) < 잘된 ..