250x250
Notice
Recent Posts
Recent Comments
관리 메뉴

탁월함은 어떻게 나오는가?

쉬프트 연산자 본문

[Snow-ball]프로그래밍(컴퓨터)/java

쉬프트 연산자

Snow-ball 2020. 12. 16. 11:51
반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
public class SecondShiftOperation {
    public static void main(String[] args) {
        // shift 연산자도 비트 연산자와 마찬가지로
        // 2진수를 기반으로 동작하는 연산자다.
        // 그러나 비트 연산자는 실제 값의 연산인 반면
        // 쉬프트 연산자는 비트를 이동시키는 연산자다.
        // (결국엔 곱셈이나 나눗셈의 역할을 수행하게 됨)
        // 장점: 일반적인 곱셈 연산(*) 보다 빠르다.
        // 단점: 2의 승수로만 동작할 수 있다.
        // 특징: 비트 연산자는 소수점에 적용이 불가능하다.
 
        int num1 = 5;
        int shiftNum = 1;
        int res = num1 << shiftNum;
 
        System.out.println("5 << 1 = " + res);
        // 왜 ? 계산이 저렇게 되는거지 ?
        // 0000 0101 = 5
        // 0000 1010 = 10
 
        //  100
        // 1000
        res = num1 << 2;
        System.out.println("5 << 2 = " + res);
        // 0000 0101 =  5
        // 0001 0100 = 20
 
        // 1000
        //   10
        res = num1 >> 1;
        System.out.println("5 >> 1 = " + res);
 
        // 0000 0101 = 5
        // 0000 0010 = 2
        res = num1 << 3;
        System.out.println("5 << 3 = " + res);
 
        // 10.5 / 2 - shift 연산자를 무조건 써야한다는 제약
        // 1050 / 2 = 525
        // 525 / 100 = 5.25
    }
}
 
 
cs

 

 

 

 

 

 

인테리어소품 베타존 : 네이버쇼핑 스마트스토어

나를 꾸미다 - 인테리어소품 베타존

smartstore.naver.com

 

반응형
Comments