Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package reuse;
- /**
- *
- * @author fmi
- */
- public class Human {
- private String name = "";
- private String family = "";
- private int age = 0;
- private static int humanPopulation = 0;
- public static String country = "Bulgaria";
- public Human(String name, String family, int age) {
- this.name = name;
- this.family = family;
- this.age = age;
- humanPopulation += 1;
- }
- public String inroduceYouself(){
- return "I am " + name + " " + family + ". I am " + age + " years old! And I live in " + country;
- }
- public String getName() {
- return this.name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getFamily() {
- return this.family;
- }
- public void setFamily(String family) {
- this.family = family;
- }
- public int getAge() {
- return this.age;
- }
- public void setAge(int age) {
- this.age = age;
- }
- public static int getHumanPopulation(){
- return humanPopulation;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement