자바 byte 의 연산 주의 점

450 단어 자바
public class Test001 {
	
	
	public static void main(String[] args) throws Exception {
		
		byte b1 = 3;
		byte b2 = 4;
		byte b3 ;
		
		//  :Type mismatch: cannot convert from int to byte
		//jvm          int  
		//b3=b1+b2;
		
		b3 = 3+4;//       7, 7   b,         class     :byte b3 = 7;
		
		//  :Type mismatch: cannot convert from int to byte
		//b1=b1+1;
		
		b1+=1;//class     b1 = (byte)(b1 + 1);        
		
	}
}

좋은 웹페이지 즐겨찾기