1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | package lesson1;
public class Student { int id; String name; int age;
public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } }
public class MyClass {
public static void main(String[] args) { Student mark = new Student();//mark -> object or instance mark.setId(1); mark.setName("Mark"); mark.setAge(15); Student tom = new Student();//Tom -> object or instance tom.setId(1); tom.setName("Tom"); tom.setAge(14); System.out.println(mark.getName() + " is "+ mark.getAge() + " years old"); System.out.println(tom.getName() + " is "+ tom.getAge() + " years old"); }
}
|
0 comments:
Post a Comment