Exemple de l’opérateur de décalage à droite non-signé(>>>) August 19, 2011 Author: user {filelink=4599} public class ShiftNonSigne { public static void main(String[] argv) throws Exception { byte c = -10; System.out.println(c >>> 1); // Affiche 2147483643 } } Categories: Uncategorized