Advertisement
wingman007

Java - Humans Example Mailn Class

Dec 1st, 2013
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.13 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package javaapplication26;
  6.  
  7. import reuse.Human;
  8.  
  9. /**
  10.  *
  11.  * @author fmi
  12.  */
  13. public class App1 {
  14.     /**
  15.      * @param args the command line arguments
  16.      */
  17.     public static void main(String[] args) {
  18.         // TODO code application logic here
  19.         Human.country = "Germany";
  20.         Human stoyan;
  21.         stoyan = new Human("Stoyan", "Cheresharov", 50);
  22.         String introduction = stoyan.inroduceYouself();
  23.        
  24.         Human ivan = new Human("Ivan", "Ivanov", 25);
  25.         System.out.println(ivan.inroduceYouself());
  26.        
  27.         System.out.println(introduction);
  28.         System.out.println("Hello!");
  29.        
  30.         App1 myApp1Instance = new App1();
  31.         myApp1Instance.getAgainHuman();
  32.        
  33.         System.out.println(Human.getHumanPopulation());
  34.         // System.out.println(stoyan.humanPopulation); // Not recommended
  35.        
  36.     }
  37.    
  38.     public void getAgainHuman(){
  39.         Human petko = new Human("Petko", "Petkov", 25);
  40.         System.out.println(petko.inroduceYouself());
  41.     }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement