package chapter01;
public class Test07 {
public static void main(String[] args) {
// TODO Auto-generated method stub
/* 명시적 형변환 : 개발자가 변수의 자료형을 강제로 바꾸는 것
* 형식 : (변환하고자 하는 타입) 변수
*/
int a = 263;
System.out.println(a);
byte b = (byte) a; // 명시적 형변환 263 - 256 = 7, (byte)는 byte범위 안에 들어가게 넣는것
System.out.println(b);
}
}