Bitwise Operator Summary : Bitwise Operators « Operators « SCJP

Home
SCJP
1.Java Source And Data Type
2.Operators
3.Modifiers
4.Type Casting
5.Statements
6.Object Oriented
7.Thread
8.Utility Classes
9.File
SCJP » Operators » Bitwise Operators 
2.3.1.Bitwise Operator Summary
Operator        Example         Result

~               ~3              -4
   
&               4           0
   
|               4           7

^               4           4


Operand 1        Operator         Operand 2            Result

0                &                0                    0

0                &                1                    0

1                &                0                    0

1                &                1                    1

0                |                0                    0

0                |                1                    1

1                |                0                    1

1                |                1                    1

0                ^                0                    0

0                ^                1                    1

1                ^                0                    1

1                ^                1                    0


public class MainClass {
  public static void main(String[] argv) {
    System.out.println(~3);
    System.out.println(4);
    System.out.println(4);
    System.out.println(4);
  }
}
-4
0
7
1
2.3.Bitwise Operators
2.3.1.Bitwise Operator Summary
2.3.2.Shift Operator Summary
2.3.3.The Bitwise Inversion Operator ~ performs bitwise inversion on integral types.
2.3.4.The Boolean Complement Operator ! inverts the value of a boolean expression.
2.3.5.The bitwise operator & provides bitwise AND
2.3.6.The bitwise operator ^ provides eXclusive-OR (XOR)
2.3.7.The bitwise operator | provides OR operations
2.3.8.Here is an example of the use of the & operator:
2.3.9.Java method to perform various bitwise operations on two integers and display the results
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.