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;
- import reuse.Student;
- /**
- *
- * @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
- System.out.println(Human.notTheProperPlace);
- System.out.println(Human.calculateSomething(2,3));
- System.out.println(Human.PI);
- Student studentStoyan;
- studentStoyan = new Student(1234);
- studentStoyan.setName("Stoyan");
- studentStoyan.setFamily("Cheresharov");
- studentStoyan.setAge(50);
- System.out.println(studentStoyan.inroduceYouself());
- }
- public void getAgainHuman(){
- Human petko = new Human("Petko", "Petkov", 25);
- System.out.println(petko.inroduceYouself());
- }
- // ToDo What are you doing here?
- public static int calculateSomething(int a, int b){
- return a + b;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement