Attributs - WildCodeSchool/toulouse-0916-revisions GitHub Wiki
un attribut est une variable attribuée à une classe ou un objet.
exemple:
public class Animal {
int age; <— ceci est un attribut
String name; <— ceci est un attribut
}
Age et name sont des attributs de la classe Animal.