Advertisement
wingman007

Java - JavaApplication26 App1.java

Dec 7th, 2013
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.72 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. import reuse.Student;
  9.  
  10. /**
  11.  *
  12.  * @author fmi
  13.  */
  14. public class App1 {
  15.     /**
  16.      * @param args the command line arguments
  17.      */
  18.     public static void main(String[] args) {
  19.         // TODO code application logic here
  20.         Human.country = "Germany";
  21.         Human stoyan;
  22.         stoyan = new Human("Stoyan", "Cheresharov", 50);
  23.         String introduction = stoyan.inroduceYouself();
  24.        
  25.         Human ivan = new Human("Ivan", "Ivanov", 25);
  26.         System.out.println(ivan.inroduceYouself());
  27.        
  28.         System.out.println(introduction);
  29.         System.out.println("Hello!");
  30.        
  31.         App1 myApp1Instance = new App1();
  32.         myApp1Instance.getAgainHuman();
  33.        
  34.         System.out.println(Human.getHumanPopulation());
  35.         // System.out.println(stoyan.humanPopulation); // Not recommended
  36.        
  37.         System.out.println(Human.notTheProperPlace);
  38.         System.out.println(Human.calculateSomething(2,3));
  39.         System.out.println(Human.PI);
  40.        
  41.         Student studentStoyan;
  42.         studentStoyan = new Student(1234);
  43.         studentStoyan.setName("Stoyan");
  44.         studentStoyan.setFamily("Cheresharov");
  45.         studentStoyan.setAge(50);
  46.        
  47.         System.out.println(studentStoyan.inroduceYouself());
  48.     }
  49.    
  50.     public void getAgainHuman(){
  51.         Human petko = new Human("Petko", "Petkov", 25);
  52.         System.out.println(petko.inroduceYouself());
  53.     }
  54.    
  55.     // ToDo What are you doing here?
  56.     public static int calculateSomething(int a, int b){
  57.         return a + b;
  58.     }
  59.    
  60.    
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement