Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
The question requires clarification. What do you mean by 'anonymous' in this context? I can't see it. – EJP Sep 12 '10 at 2:05

3 Answers

That's not an anonymous class, it's just an empty list.

I realised you might be talking about returning a new object that hasn't been assigned to a named variable, and so is anonymous in that sense. The example you give looks like it could be improved - it seems that getPeople() should return the people variable, since that's already been initialised to an empty List and using that would save the overhead of creating a fresh empty list on each call to getPeople().

Now that you've edited your question, I think the above is probably what you were asking.

share|improve this answer

This may represent an example of coding to the interface. In the example, ArrayList is an implementation detail. Returning List indicates that clients should only rely on List methods of the returned object.

share|improve this answer
2  
This is probably what the OP was talking about - just using the wrong term. – akf Sep 11 '10 at 20:03

This is returning an anonymous List :

public class Person {
   public List<Person> getPeople() {
      return new ArrayList<Person>(){};
   }
}

To be exact, it's an anonymous ArrayList.

An anonymous List would be :

public class Person {
   public List<Person> getPeople() {
      return new List<Person>(){
          //implementing all methods required for a List.
      };
   }
}
share|improve this answer
1  
To be even more exact, it is an anonymous subclass of ArrayList. – Stephen C Sep 12 '10 at 2:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.