자바 패키지 데이터 캐 시

5900 단어
캐 시
포장: 기본 데이터 형식 을 포장 류 로 전환 합 니 다.뜯 기: 포장 류 유형 이 기본 데이터 형식 으로 바 뀌 었 습 니 다.자바 에 서 는 일부 기본 데이터 형식 에 대응 하 는 포장 류 의 일부 데 이 터 를 캐 시 했 을 뿐 입 니 다. 1. Byte, Short, Integer, Long 등 네 가지 데이터 형식 을 미리 캐 시 했 습 니 다. 범 위 는 - 128 ~ 127 (수미 포함) 입 니 다.
Integer a =127;
Integer b =127;
System. out.println (a==b) ;//true

Integer a =128;
Integer b =128;
System. out.println (a==b) ;//false

a = new Integer(127);
b = new Integer(127);
System. out.println (aInteqer==bInteger) ;//false


2. Float Double 형식의 데 이 터 는 캐 시 하지 않 습 니 다.
Double a =1.0;
Double be =1.0;
System. out. println (a==b) ;//false

3. Character 데이터 형식 으로 캐 시 에 대응 하 는 ASCII 코드 입 니 다.
Character a=127;
Character c=127;
System.out.println(a==c);//true


4. Boolean 데이터 형식 으로 캐 시 합 니 다.
Boolean a =true;
Boolean c =true;
System.out.println(a==c);//true


자동 으로 상 자 를 뜯다.
기본 데이터 형식 과 비교 할 때 포장 류 유형의 데 이 터 를 자동 으로 기본 데이터 형식 으로 변환 합 니 다.
    int c = 127;
	Integer cc = 127;
	Integer ccc = new Integer(127);
	System.out.println(c==cc);//true
	System.out.println(c==ccc);//true
	System.out.println(cc==ccc);//false

좋은 웹페이지 즐겨찾기