형 변환 - OperatorEx03.java
CODEDRAGON ㆍDevelopment/Java
반응형
형 변환
소스코드
- public class OperatorEx03 {
- public static void main(String[] args){
- //형 변환
- int a = 10;
- float b = 10.0F;
- // int == float
- if( a == b){ // int -> float (10 -> 10.0F)
- System.out.println("a와 b는 같다.");
- System.out.println("a : " + a);
- System.out.println("b : " + b);
- }
- System.out.println("");
- char c ='0';
- int d = 0;
- //char != int
- if(c != d){ //char -> int ('0' -> 48)
- System.out.println("c와 d는 같지 않다.");
- System.out.println("c : " + c);
- System.out.println("d : " + d);
- }
- System.out.println("");
- //char == int
- char e = 'A';
- int f= 65;
- if( e == f){ //char -> int ('A' -> 65)
- System.out.println("e와 d는 같다.");
- System.out.println("e : " + e);
- System.out.println("f : " + f);
- }
- }
- }
출력결과
'Development > Java' 카테고리의 다른 글
OperatorEx04.java-논리 연산자 (0) | 2014.11.02 |
---|---|
OperatorEx02.java-비교(관계) 연산자 (0) | 2014.11.01 |
대입 연산자-OperatorEx09.java (0) | 2014.10.27 |
% 연산자- OperatorEx14 (0) | 2014.10.24 |
/연산자 연산-OperatorEx13 (0) | 2014.10.24 |