Initialize a collection within an object?

后端 未结 10 1248
长发绾君心
长发绾君心 2021-02-04 15:03

If an object has a property that is a collection, should the object create the collection object or make a consumer check for null? I know the consumer should not assume, just

相关标签:
10条回答
  • 2021-02-04 15:17

    I've tried both ways and I am usually happy when I find I have already instanciated it. Alternatively you could hide the the implementation from the consumer behind a set of methods that can handle the check for you.

    0 讨论(0)
  • 2021-02-04 15:19

    While what I say here is not universal by any means, I think collections are mostly suited as private properties which should be accessed by public methods on the object itself. Therefore, the object is responsible to create and destroy them as needed. This way, it won't be possible to set it to null from external code.

    0 讨论(0)
  • 2021-02-04 15:20

    You can also use the "Lazy initailizer" pattern where the collection is not initialized until (and unless) someone accesses the property getter for it... This avoids the overhead of creating it in those cases where the parent object is instantiated for some other purpose that does not require the collection...

       public class Division
        {
            private int divId;
            public int DivisionId { get; set; }
    
            private Collection<Employee> emps;
            public Collection<Employee> Employees
            { get {return emps?? (emps = new Collection<Employee>(DivisionId));}} 
        }
    

    EDIT: This implementation pattern is, in general, not thread safe... emps could be read by two different threads as null before first thread finishes modifying it. In this case, it probably does not matter as DivisionId is immutable and although both threads would get different collections, they would both be valid. Whne the second thread fihishes, therefore, emps would be a valid collection. The 'probably' is because it might be possible for the first thread to start using emps before the second thread resets it. That would not be thread-safe. Another slightly more complex implementation from Jon SKeet is thread-safe (see This article on SIngletons for his example/discussion on how to fix this.

    0 讨论(0)
  • 2021-02-04 15:26

    IMO, this is where IEnumerable comes in nicely.

    Personally, I like my 'collection' properties to be initialized to empty lists.

    0 讨论(0)
  • 2021-02-04 15:32

    If the collection is an intrinsic part of the object, then the object should generally create it (and not allow the user to set it to a different collection instance).

    0 讨论(0)
  • 2021-02-04 15:35

    This depends on the contract you have between your API and the user.

    Personally, I like a contract that makes the Object manage its collections, i.e., instantiating them on creation, and ensuring that they can't be set to null via a setter - possibly by providing methods to manage the collection rather than setting the collection itself.

    i.e., addFoo(Foo toAdd) instead of setFooSet(Set set), and so on.

    But it's up to you.

    0 讨论(0)
提交回复
热议问题