카테고리1

Chrome (1) GAME (2) HTML (3) Internet Explore (1) Movie (1) TIP (2) Windows (2) java (51) 건강 (1) 맛집 (1)

Post List

2017년 2월 24일 금요일

java]07]데이터 형변환

데이터 형변환

1. 묵시적 형변환(자동 형변환)

short s=10;
int i;
i=s;
System.out.println("묵시적 형변환: "+i);


2. 명시적 형변환(강제 형변환)

short s1;
int i1 = 10;
s1=(short)i1;
System.out.println(s1);


연산시 데이터 형변환

short A=5;
short B=3;
//short C=(short)(A+B); 
int C=A+B;

댓글 없음:

댓글 쓰기