class Student { String name; void sayName() { System.out.println("My name is: " + this.name); } Student(String name) { this.name = name; } public static void main(String[] args) { Student a, b, c; a = new Student("Zamir"); b = new Student("Takaaki"); c = new Student("Adrian"); b.sayName(); c.sayName(); a.sayName(); } }