Question: A Person has a name (just a first name for simplicity) and friends. Store the names of the friends in a string, separated by spaces.
A Person has a name (just a first name for simplicity) and friends. Store the names of the friends in a string, separated by spaces. Provide a constructor that constructs a person with a given name and no friends. Provide methods
public void befriend(Person p)
public void unfriend(Person p)
public String getFriendNames()
Step by Step Solution
3.52 Rating (165 Votes )
There are 3 Steps involved in it
Person class class Person private String name private String friendList Construcor to create object ... View full answer
Get step-by-step solutions from verified subject matter experts
Document Format (2 attachments)
2106_61d6ac3466c45_873046.pdf
180 KBs PDF File
2106_61d6ac3466c45_873046.docx
120 KBs Word File
