實現介面與顯式實現介面的區別

來源:互聯網
上載者:User

在實現介面的時候,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();
    }
}

 

現在大部分的系統為了保證擴充性,都廣泛地使用介面。顯式實現介面,可以隱藏具體類的複雜性。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.