Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 29 |
| 30 |
Tags
- Menu
- JavaScript
- JSP
- 안드로이드
- HTML
- 배열
- Eclips
- 에러페이지
- struts2
- 메서드
- 메소드
- 어노테이션
- 오버로딩
- 전화걸기
- Java
- 국제화
- 기본
- oracle
- mybatis
- layout
- Android
- Spring
- Graphic
- paint
- OGNL
- AWT
- 생성자
- 클래스
- 이클립스
- 예외처리
Archives
- Today
- Total
note
자동형변환 본문
public class OperatorEx22 {
public static void main(String[] args){
int a = 10;
float b = 10.0f;
if(a ==b){//int -> float 자동형변환
//10 -> 10.0f
//10.0f == 10.0f
System.out.println("10과 10.0f는 같다.");
}
char c = '0'; //아스키코드 48을 의미함
int d = 0;
if(c != d){ //char -> int 자동형변환
//'0' -> 48
// 48 != 0
System.out.println("'0'과 0은 같지 않다.");
}
char e = 'A'; //아스키코드 65
int f = 65;
if(e == f){ // char -> int
// 'A' -> 65
// 65 == 65
System.out.println("'A'는 65와 같다.");
}
int num = 5;
if( num > 0 && num < 9){
//true true -> true
System.out.println("5는 0보다 크고, 9보다는 작다.");
}
}
}
10과 10.0f는 같다.
'0'과 0은 같지 않다.
'A'는 65와 같다.
5는 0보다 크고, 9보다는 작다.