java or sign code example
Example 1: java or symbol
//logical OR is || in Java
public static boolean or(boolean a,boolean b){
return a||b;
}
//bitwise OR is | in Java
public static int bitwiseOr(int a,int b){
return a|b;
}
Example 2: summary of operator java
~ Unary bitwise complement
<< Signed left shift
>> Signed right shift
>>> Unsigned right shift
& Bitwise AND
^ Bitwise exclusive OR
| Bitwise inclusive OR