zoukankan      html  css  js  c++  java
  • 实现接口与显式实现接口的区别

    原文:http://www.cnblogs.com/chenxizhang/archive/2008/08/22/1274265.html

    在实现接口的时候,VS提供了两个菜单,一个是"实现接口",一个是"显式实现接口",它们到底有何不一样呢

    我们来比较一下看看

    1.首先假设我们有一个接口

    public interface ICustomer
    {
        void SomeMethod();
    }

    2.如果是"实现接口",那么代码大致如下

    public class Customer:ICustomer
    {

        #region ICustomer 成员

        public void SomeMethod()
        {
            throw new NotImplementedException();
        }

        #endregion
    }

    3.如果是"显式实现接口",那么代码大致如下

    public class Customer:ICustomer
    {

        #region ICustomer 成员

        void ICustomer.SomeMethod()
        {
            throw new NotImplementedException();
        }

        #endregion
    }

    大家看到差别了吧?显式实现的方式,那些方法都会加上一个前缀的。但是,这到底意味着什么呢?

    如果是实现接口

    public class DAL {
        /// <summary>
        /// 如果我们是直接实现接口的话,那么既可以用接口调用方法,也可以用具体类调用方法
        /// </summary>
        public void GetCustomer() {
            Customer customer = new Customer();
            customer.SomeMethod();
        }

        public void GetCustomer2() {
            ICustomer customer = new Customer();
            customer.SomeMethod();
        }
    }

    如果是显式实现接口

    public class DAL {
        /// <summary>
        /// 如果我们是显式实现接口的话,那么要访问里面的方法就只能是通过接口来调用,而不能通过具体类来做
        /// </summary>
        public void GetCustomer() {
            ICustomer customer = new Customer();
            customer.SomeMethod();
        }
    }

    现在大部分的系统为了保证扩展性,都广泛地使用接口。显式实现接口,可以隐藏具体类的复杂性。

  • 相关阅读:
    NoHttp封装--03 cookie
    NoHttp封装--02 自定义请求
    NoHttp封装--01
    Cookie管理 WebView同步
    Java注解处理器--编译时处理的注解
    Android联网更新应用
    shell编程下 特殊变量、test / [ ]判断、循环、脚本排错
    磁盘管理 之 parted命令添加swap,文件系统
    磁盘管理之 raid 文件系统 分区
    用户管理上
  • 原文地址:https://www.cnblogs.com/ghw0501/p/4802298.html
Copyright © 2011-2022 走看看