public class Person { // Attributs privés private String name; private int age; // Constructeur public Person(String name, int age) { this.name = name; this.age = age; } // Getter pour l'attribut 'name' public String getName() { return name; } // Setter pour l'attribut 'name' public void setName(String name) { this.name = name; } // Getter pour l'attribut 'age' public int getAge() { return age; } // Setter pour l'attribut 'age' public void setAge(int age) { if (age > 0) { // Exemple de vérification this.age = age; } } }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter