Image ventilateur qui tourne fond du ventilateur Circuit imprimé (image de titrage diode verte diode rouge
Administration

Affecter

INFORMATIQUE > DÉVELOPPEMENT

V. t. Donner une valeur à une variable. Dans beaucoup de langages (pas tous) l'affectation s'écrit avec le signe = qui est habituellement le signe de l'égalité.

En pratique

Exemples d'affectations :

En Java :


float pi = 3.141f;

en PHP :


$note = 18;

En Common Lisp :


(setf prix 10)

En ruby :


langage = "Ruby"

En R :


n <- 200

En Eiffel :


width := 1

En Eiffel :


Procedure TaillePoids is
   Taille : Float := 1.85 ; 
   Poids : Float := 63.0 ; 
begin
...
Anglais
To assign or to allocate.
Allemand
Zuordnen.
Espagnol
Asignar.