Aide:BitXOR.txt
De Wiki AutoIt Français
Document original V3.3.6.1 :
###Function###
BitXOR
###Description###
Performs a bitwise exclusive OR (XOR) operation.
###Syntax###
BitXOR ( value1, value2 [, value n] )
###Parameters###
@@ParamTable@@
value1
The first number.
value2
The second number.
value n
[optional] The nth number - up to 255 values can be specified.
@@End@@
###ReturnValue###
Returns the value of the parameters bitwise-XOR'ed together.
Bit operations are performed as 32-bit integers.
###Remarks###
Remember hex notation can be used for numbers.
BitXOR returns 1 in a bit position if there are an odd number 1's in the corresponding bit position in all the input arguments, and 0 otherwise.
###Related###
BitAND, BitNOT, BitOR, BitShift, Hex, BitRotate
###Example###
@@IncludeExample@@
Document traduit V3.3.6.1 :
###Function###
BitXOR
###Description###
Exécute un "OU EXCLUSIF" logique bit à bit.
###Syntax###
BitXOR ( value1, value2 [, value n] )
###Parameters###
@@ParamTable@@
value1
Le premier nombre.
value2
Le deuxième nombre.
value n
[optionnel] Le nième nombre - Jusqu'à 255 valeurs peuvent être spécifiées.
@@End@@
###ReturnValue###
Retourne le "OU EXCLUSIF" bit à bit des valeurs entrées en paramètres.
Les opérations bit à bit sont effectuées comme entiers 32 bits.
###Remarks###
La notation hexadécimale peut être utilisée comme arguments.
BitXOR retourne 1 pour chaque position de bit où on a un nombre impair de 1, 0 sinon.
###Related###
<a href="BitAND.htm">BitAND</a>, <a href="BitNOT.htm">BitNOT</a>, <a href="BitOR.htm">BitOR</a>, <a href="BitShift.htm">BitShift</a>, <a href="Hex.htm">Hex</a>, <a href="BitRotate.htm">BitRotate</a>
###Example###
@@IncludeExample@@
Traducteur : sylvanie
Contributeurs (pour les modifications avant le Wiki) : Jerome, Tlem