Java で 2 つのバイト配列のビットごとの OR を実行する必要があります。どうすればそうできますか?
byte a= new byte[256];
byte b= new byte[256];
byte c; /*it should contain information i.e bitwise OR of a and b */
Java で 2 つのバイト配列のビットごとの OR を実行する必要があります。どうすればそうできますか?
byte a= new byte[256];
byte b= new byte[256];
byte c; /*it should contain information i.e bitwise OR of a and b */