How to make IEnumerable readonly?

前端 未结 8 651
臣服心动
臣服心动 2021-02-07 12:23

Why are the lists list1Instance and p in the Main method of the below code pointing to the same collection?

class Person
         


        
相关标签:
8条回答
  • 2021-02-07 12:53

    You could make a deepclone of each item in the list, and never return references to your original items.

    public IEnumerable<Person> Get()
    {
      return l1
        .Select(p => new Person(){
          FirstName = p.FirstName,
          LastName = p.LastName
        });
    }
    
    0 讨论(0)
  • 2021-02-07 12:53

    IEnumerable<T> is readonly

    p is a new collection which doesn't depend on list1instance. The mistake you made, is that you thought that this line list[0].FirstName = "uf1";
    would only modify one of the lists, when on fact you're modifying the Person object.
    The two collections are distinct, they just happen to have the same items.
    To prove that they are different, try adding and removing items from one of the lists, and you'll see that the other one isn't affected.

    0 讨论(0)
  • 2021-02-07 12:53

    First of all, your List in your class is public, so there's nothing stopping anyone from directly accessing the list itself.

    Secondly, I would implement IEnumerable and return this in my GetEnumerator Method

    return l1.AsReadOnly().GetEnumerator();
    
    0 讨论(0)
  • 2021-02-07 13:02

    In fact, IEnumerable<T> is already readonly. It means you cannot replace any items in the underlying collection with different items. That is, you cannot alter the references to the Person objects that are held in the collection. The type Person is not read only, however, and since it's a reference type (i.e. a class), you can alter its members through the reference.

    There are two solutions:

    • Use a struct as the return type (that makes a copy of the value each time it's returned, so the original value will not be altered — which can be costly, by the way)
    • Use read only properties on the Person type to accomplish this task.
    0 讨论(0)
  • 2021-02-07 13:04

    This code returns a derived class, so as requested the return type hasn't changed.

    It does throw an error if you try and change a field (via property) so is 'read only'. If you did want to be able to change values without affecting the original the clone answer above is better.

    class  Person
    {
        public virtual string FirstName { get; set; }
        public virtual string LastName { get; set; }
    
    
        public Person(string firstName, string lastName) {
            this.FirstName = firstName;
            this.LastName = lastName;
        }
    
    }
    
    class PersonReadOnly : Person
    {
        public override string FirstName { get { return base.FirstName; } set { throw new Exception("setting a readonly field"); } }
        public override string LastName { get { return base.LastName; } set { throw new Exception("setting a readonly field"); } }
    
        public PersonReadOnly(string firstName, string lastName) : base(firstName, lastName)
        {
        }
        public PersonReadOnly(Person p) : base(p.FirstName, p.LastName)
        {
    
        }
    
    }
    
    class List1
    {
        public List<Person> l1 = new List<Person>();
    
        public List1()
        {
            l1.Add(new Person("f1", "l1"));
            l1.Add(new Person("f2", "l2"));
            l1.Add(new Person("f3", "l3"));
            l1.Add(new Person("f4", "l4"));
            l1.Add(new Person("f5", "l5"));
        }
        public IEnumerable<Person> Get()
        {
            foreach (Person p in l1)
            {
                yield return new PersonReadOnly(p);
            }
            //return l1.AsReadOnly(); 
        }
    
    }  
    class Program
    {
    
        static void Main(string[] args)
        {
            List1 list1Instance = new List1();
    
            List<Person> p = new List<Person>(list1Instance.Get());           
    
            UpdatePersons(p);
    
            bool sameFirstName = (list1Instance.l1[0].FirstName == p[0].FirstName);
        }
    
        private static void UpdatePersons(List<Person> list)
        {
            // readonly message thrown
            list[0].FirstName = "uf1";
        }
    
    0 讨论(0)
  • They aren't pointing to the same .Net collection, but rather, to the same Person objects. The line:

    List<Person> p = new List<Person>(list1Instance.Get()); 
    

    copies all the Person elements from list1Instance.Get() to list p. The word "copies" here means copies the references. So, your list and IEnumerable just happen to point to the same Person objects.

    IEnumerable<T> is always readonly, by definition. However, the objects inside may be mutable, as in this case.

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