码迷,mamicode.com
首页 > Windows程序 > 详细

【转】编写高质量代码改善C#程序的157个建议——建议151:使用事件访问器替换公开的事件成员变量

时间:2017-12-11 14:10:52      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:strong   move   null   and   span   字段   访问   高质量   amp   

 

建议151:使用事件访问器替换公开的事件成员变量

事件访问器包含两部分内容:添加访问器和删除访问器。如果涉及公开的事件字段,应该始终使用事件访问器。代码如下所示:

    class SampleClass
    {
        EventHandlerList events = new EventHandlerList();
        public event EventHandler Click
        {
            add
            {
                events.AddHandler(null, value);
            }
            remove
            {
                events.RemoveHandler(null, value);
            }
        }
    }

使用事件访问器的好处是,提供对赋值更多细粒度的控制。这就好比应该使用属性而不使用字段一样。所以下面的代码没有事件访问器灵活:

    class SampleClass
    {
        EventHandlerList events = new EventHandlerList();
        public event EventHandler Click;
    }

 

 

 

转自:《编写高质量代码改善C#程序的157个建议》陆敏技

【转】编写高质量代码改善C#程序的157个建议——建议151:使用事件访问器替换公开的事件成员变量

标签:strong   move   null   and   span   字段   访问   高质量   amp   

原文地址:http://www.cnblogs.com/farmer-y/p/8022202.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!