Hola, necesito eliminar un indicador en Java. Tengo las siguientes constantes:Cómo eliminar un indicador en Java
public final static int OPTION_A = 0x0001;
public final static int OPTION_B = 0x0002;
public final static int OPTION_C = 0x0004;
public final static int OPTION_D = 0x0008;
public final static int OPTION_E = 0x0010;
public final static int DEFAULT_OPTIONS =
OPTION_A | OPTION_B | OPTION_C | OPTION_D | OPTION_E;
Deseo eliminar, por ejemplo, OPTION_E de las opciones predeterminadas. ¿Por qué el siguiente código no es correcto?
// remove option E from defaul options:
int result = DEFATUL_OPTIONS;
result |= ~OPTION_E;
¿Qué le dice la JVM? ¿No sería más rápido ejecutarlo que esperar que volviera una respuesta de SO? Podrías haber hecho esto tres veces hasta ahora. – duffymo