web-dev-qa-db-ja.com

Javaでビットシフトはどのように機能しますか?

私はこの声明を持っています:

バイトxのビット値が00101011であると仮定します。x>>2の結果は何ですか?

どうすればプログラムできますか?

58
bentham

まず、Javaではbytenotシフトできます。シフトできるのはintまたはlongのみです。そのため、byteは最初に昇格されます。

00101011-> 00000000000000000000000000101011

または

11010100-> 11111111111111111111111111010100

今、x >> Nの意味(2進数の文字列として表示する場合):

  • 右端のNビットは破棄されます
  • 左端のビットは、結果を元のサイズ(32または64ビット)にパディングするために必要な回数だけ複製されます。

00000000000000000000000000101011 >> 2-> 00000000000000000000000000001010

11111111111111111111111111010100 >> 2-> 11111111111111111111111111110101

94
finnw

Shift Operators

00101011のバイナリ32ビットは

00000000 00000000 00000000 00101011、および結果は次のとおりです。

  00000000 00000000 00000000 00101011   >> 2(times)
 \\                                 \\
  00000000 00000000 00000000 00001010

43のビットを距離2だけ右にシフトします。左側の最上位(符号)ビットで埋めます。

結果は10進数値10の00001010です。

00001010
    8+2 = 10
57
Chandra Sekhar

右に2ビットシフトすると、最下位の2ビットがドロップされます。そう:

x = 00101011

x >> 2

// now (notice the 2 new 0's on the left of the byte)
x = 00001010

これは本質的に、intを2、2で除算することと同じです。

Javaの場合

byte b = (byte) 16;
b = b >> 2;
// prints 4
System.out.println(b);
16
jjnguy

これらの例は、正の数と負の数の両方に適用される3種類のシフトをカバーしています。

// Signed left shift on 626348975
00100101010101010101001110101111 is   626348975
01001010101010101010011101011110 is  1252697950 after << 1
10010101010101010100111010111100 is -1789571396 after << 2
00101010101010101001110101111000 is   715824504 after << 3

// Signed left shift on -552270512
11011111000101010000010101010000 is  -552270512
10111110001010100000101010100000 is -1104541024 after << 1
01111100010101000001010101000000 is  2085885248 after << 2
11111000101010000010101010000000 is  -123196800 after << 3


// Signed right shift on 626348975
00100101010101010101001110101111 is   626348975
00010010101010101010100111010111 is   313174487 after >> 1
00001001010101010101010011101011 is   156587243 after >> 2
00000100101010101010101001110101 is    78293621 after >> 3

// Signed right shift on -552270512
11011111000101010000010101010000 is  -552270512
11101111100010101000001010101000 is  -276135256 after >> 1
11110111110001010100000101010100 is  -138067628 after >> 2
11111011111000101010000010101010 is   -69033814 after >> 3


// Unsigned right shift on 626348975
00100101010101010101001110101111 is   626348975
00010010101010101010100111010111 is   313174487 after >>> 1
00001001010101010101010011101011 is   156587243 after >>> 2
00000100101010101010101001110101 is    78293621 after >>> 3

// Unsigned right shift on -552270512
11011111000101010000010101010000 is  -552270512
01101111100010101000001010101000 is  1871348392 after >>> 1
00110111110001010100000101010100 is   935674196 after >>> 2
00011011111000101010000010101010 is   467837098 after >>> 3
10
Percy Vega

>>は算術右シフト演算子です。第1オペランドのすべてのビットは、第2オペランドで示される桁数だけシフトされます。結果の左端のビットは、元の数値の左端のビットと同じ値に設定されます。 (これは、負の数が負のままになるようにするためです。)

具体的なケースは次のとおりです。

00101011
  001010 <-- Shifted twice to the right (rightmost bits dropped)
00001010 <-- Leftmost bits filled with 0s (to match leftmost bit in original number)
5
Mike Daniels
public class Shift {
 public static void main(String[] args) {
  Byte b = Byte.parseByte("00101011",2);
  System.out.println(b);
  byte val = b.byteValue();
  Byte shifted = new Byte((byte) (val >> 2));
  System.out.println(shifted);

  // often overloked  are the methods of Integer

  int i = Integer.parseInt("00101011",2);
  System.out.println( Integer.toBinaryString(i));
  i >>= 2;
  System.out.println( Integer.toBinaryString(i));
 }
}

出力:

43
10
101011
1010
4
stacker

あなたは使用することができます数値のbitString表示を表示する場合は、このAPI。 ncommons Math

例(jrubyで)

bitString = org.uncommons.maths.binary.BitString.new(Java.math.BigInteger.new("12").toString(2))
bitString.setBit(1, true)
bitString.toNumber => 14

edit:APIリンクを変更し、小さな例を追加

2
Joni
byte x = 51; //00101011
byte y = (byte) (x >> 2); //00001010 aka Base(10) 10
2
Jacob Tomaw

00101011 in Javaのようなバイナリリテラルを書くことはできませんので、代わりに16進数で書くことができます。

byte x = 0x2b;

x >> 2の結果を計算するには、それを正確に記述して結果を出力します。

System.out.println(x >> 2);
2
Mark Byers

00101011 = 10進数で43

class test {    
    public static void main(String[] args){
       int a= 43;       
       String b= Integer.toBinaryString(a >> 2);        
       System.out.println(b);
    }   
}

出力:

101011は1010になります

0
Gihan Fernando