Click here to watch in Youtube :
https://www.youtube.com/watch?v=FqELqUKGqqw&list=UUhwKlOVR041tngjerWxVccw
Click the below Image to Enlarge
Java Tutorial Java bitwise Shift Operators |
Java Tutorial Java bitwise Shift Operators |
Java Tutorial Java bitwise Shift Operators |
class LeftShiftOperatorDemo { public static void main(String[] args) { // 00110011 int a = 51; System.out.println("binary of 'a' : " + Integer.toBinaryString(a) + "\n"); int b = 2; // 11001100 int value = a << b; System.out.println("binary of 'value' after Left shift : " + Integer.toBinaryString(value)); System.out.println("value : " + value); System.out.println("-----------------------------------"); } }
binary of 'a' : 110011 binary of 'value' after Left shift : 11001100 value : 204 -----------------------------------
class RightShiftOperatorDemo { public static void main(String[] args) { // 11001100 int a = 204; System.out.println("binary of 'a' : " + Integer.toBinaryString(a) + "\n"); int b = 2; // 00110011 int value = a >> b; System.out.println("binary of 'value' after Right shift : " + Integer.toBinaryString(value)); System.out.println("value: " + value); } }
binary of 'a' : 11001100 binary of 'value' after Right shift : 110011 value: 51
https://sites.google.com/site/javaee4321/java/OperatorsDemoShiftOperatorApp.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/OperatorsDemoShiftOperatorApp
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/9c29c9c8cf10305cf0952ccfd17cdec26383c2e4/BasicJava/OperatorsDemoShiftOperatorApp/?at=master
Refer:
http://www.binaryhexconverter.com/binary-to-decimal-converter
See also:
No comments:
Post a Comment