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 javaapplication26;
- import reuse.Human;
- /**
- *
- * @author fmi
- */
- public class App1 {
- /**
- * @param args the command line arguments
- */
- public static void main(String[] args) {
- // TODO code application logic here
- Human.country = "Germany";
- Human stoyan;
- stoyan = new Human("Stoyan", "Cheresharov", 50);
- String introduction = stoyan.inroduceYouself();
- Human ivan = new Human("Ivan", "Ivanov", 25);
- System.out.println(ivan.inroduceYouself());
- System.out.println(introduction);
- System.out.println("Hello!");
- App1 myApp1Instance = new App1();
- myApp1Instance.getAgainHuman();
- System.out.println(Human.getHumanPopulation());
- // System.out.println(stoyan.humanPopulation); // Not recommended
- }
- public void getAgainHuman(){
- Human petko = new Human("Petko", "Petkov", 25);
- System.out.println(petko.inroduceYouself());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement