代码之家  ›  专栏  ›  技术社区  ›  David

用于通过C中的方法强制添加到集合的模式#

  •  4
  • David  · 技术社区  · 14 年前

    我有一个集合成员的班级。我希望防止外部代码直接修改此集合,而使用方法(可以执行适当的验证等)。

    这比我想象的要难。这是我使用的解决方案。你能告诉我有没有更好的方法来做这个普通的事情吗?这一切似乎有点过于精心设计了。

    using System.Collections.Generic;
    using System.Collections.ObjectModel;
    public class Foo
      {
        private List<Bar> _bars = new List<Bar>();
    
        public ReadOnlyCollection<Bar> Bars { get { return _bars.AsReadOnly(); } } 
    
        public void AddBar(Bar bar) //black sheep
        {
          //Insert validation logic here
          _bars.Add(bar);
        }
      }
    
    2 回复  |  直到 14 年前
        1
  •  4
  •   Arseny    14 年前

    我认为这是一个很好的解决办法。马丁·福勒在这里讨论了这种方法。 Incapculate collection

        2
  •  2
  •   sloth    14 年前

    您的方法没有任何错误,但是如果需要,可以将bars属性更改为IEnumerable,因为readOnlyCollection实现了IEnumerable。

    public class Foo
    {
        private List<Bar> _bars = new List<Bar>();
    
        public IEnumerable<Bar> Bars { get { return _bars.AsReadOnly(); } }
    
        public void AddBar(Bar bar) //black sheep
        {
            //Insert validation logic here
            _bars.Add(bar);
        }
    }
    

    如果不在列表中使用.asreadonly(),可以将IEnumeable强制转换回列表。

    推荐文章