Guest User

Untitled

a guest
Sep 25th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Person() {}
  2.  
  3. class Empl(){
  4. private Person[] currentPerson
  5. }
  6.  
  7. public function addPerson(Person person){
  8. this.currentPerson[this.currentPerson.length + 1] = person;
  9. }
Add Comment
Please, Sign In to add comment