728x90
public class Ex08 {//덧셈.
public static void main(String[] args){
byte a = 10;
byte b = 20;
byte c = (byte)(a+b);
//byte c = a+b; // result type is int.
System.out.println(c);
}
}
728x90
'JAVA > 예제' 카테고리의 다른 글
[JAVA] ch03-10. int에서 long 오버플로우 (0) | 2017.08.21 |
---|---|
[JAVA] ch03-09. byte 오버플로우 (0) | 2017.08.21 |
[JAVA] ch03-07. 논리 연산자 (0) | 2017.08.21 |
[JAVA] ch03-06. 형변환 (0) | 2017.08.21 |
[JAVA] ch03-05. 비트전환 (0) | 2017.08.21 |
댓글