I have a int variable to save the option, that may include none, one or many sub-options like this:
public static final int OPERATOR_PLUS = 1;
public static final int OPERATOR_SUBTRACT = 2;
public static final int OPERATOR_MULTIPLY = 4;
public static final int OPERATOR_DIVIDE = 8;
And I need a function that will return if that variant contains a sub-option. I tried:
return (Operator & Operators);
return (Operator && Operators);
But Eclipse says both of them are grammar errors (both Operator and Operators are int). Please tell me how to use AND Bit operator in Java. In .NET, I use: Operator And Operators.
Thanks.