Wednesday 4 November 2015

Java Tutorial Java bitwise Shift Operators


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 
LeftShiftOperatorDemo.java
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("-----------------------------------");

    }

}
Output
binary of 'a'                       :   110011

binary of 'value' after Left shift  : 11001100
value : 204
-----------------------------------
RightShiftOperatorDemo.java
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);

    }

}
Output
binary of 'a'                        : 11001100

binary of 'value' after Right shift  :   110011
value: 51
Click the below link to download the code:
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:

  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • No comments:

    Post a Comment