Skip to content

Instantly share code, notes, and snippets.

Created May 31, 2013 11:53
Show Gist options
  • Save anonymous/5684491 to your computer and use it in GitHub Desktop.
Save anonymous/5684491 to your computer and use it in GitHub Desktop.
/**
* Classe Personne
* Cette classe dérit un individu
*/
public class Personne{
private String nom;
private int age;
public Personne(String name, int age){
name = nom;
this.age = age; // ici le mot clé this me permet d'eviter le pb avec les noms de variable identiques
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment