Hi,
I am using Java 1.4 on JDeveloper.
When I try to complie following piece of code, its gives error:
package myOtherPackage;
class BitDemo {
public static void main(String[] args) {
int bitmask = 0x000F;
int val = 0x2222;
// prints "2"
System.out.println(val & bitmask);
}
}
Error: method >>(java.lang.String, int) not found in class myOtherPackage.BitDemo.
Kindly help me on this....