Advertisement
wingman007

Java - Humans Example Human Class

Dec 1st, 2013
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.25 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package reuse;
  6.  
  7. /**
  8.  *
  9.  * @author fmi
  10.  */
  11. public class Human {
  12.    
  13.     private String name = "";
  14.    
  15.     private String family = "";
  16.    
  17.     private int age = 0;
  18.    
  19.     private static int humanPopulation = 0;
  20.    
  21.     public static String country = "Bulgaria";
  22.    
  23.     public Human(String name, String family, int age) {
  24.         this.name = name;
  25.         this.family = family;
  26.         this.age = age;
  27.         humanPopulation += 1;
  28.     }
  29.    
  30.     public String inroduceYouself(){
  31.         return "I am " + name + " " + family + ". I am " + age + " years old! And I live in " + country;
  32.     }
  33.    
  34.     public String getName() {
  35.         return this.name;
  36.     }
  37.    
  38.     public void setName(String name) {
  39.         this.name = name;
  40.     }
  41.    
  42.     public String getFamily() {
  43.         return this.family;
  44.     }
  45.    
  46.     public void setFamily(String family) {
  47.         this.family = family;
  48.     }
  49.    
  50.     public int getAge() {
  51.         return this.age;
  52.     }
  53.    
  54.     public void setAge(int age) {
  55.         this.age = age;
  56.     }
  57.    
  58.     public static int getHumanPopulation(){
  59.         return humanPopulation;
  60.     }
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement