I was having trouble understanding the following snippet:
public class Person {
private List<Person> people = new ArrayList<Person>();
public List<Person> getPeople() {
return new ArrayList<Person>();
}
}
Edit: Sorry, maybe I got my terms incorrect. I guess I've seen code like this where a new collection is returned, and there is a collection instance variable for that class. So I was wondering what the implications were.