You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
388 B

package Person;
public class PersonTest {
public static void main (String[] args) {
//setting up the first object
Person s1=new Student("0001","Roya",90);
//setting up the second object
Person t1=new Teacher("001","Edward","Biology");
//using the approach addPerson()
Add.addPerson(s1);
Add.addPerson(t1);
}
}