C#複習⑤

来源:http://www.cnblogs.com/zpfbuaa/archive/2016/06/19/5599273.html
-Advertisement-
Play Games

繼承、Overriding重寫、動態綁定、Sealed密封類、Object類、重載==和!= ...


C#複習⑤

2016年6月19日

22:39

Main Inheritance 繼承

1.繼承的語法結構

class A { // base class

int a;

public A() {...}

public void F() {...}

}

class B : A { // subclass (inherits from A, extends A)

int b;

public B() {...}

public void G() {...}

}

C#中類的繼承只能是單繼承,在Java中也只支持單繼承,C++中支持多繼承。但是C#、Java、C++均可以實現多個介面。

Single inheritance: a class can only inherit from one base class, but it can implement multiple interfaces.

某個類只能繼承一個父類不能繼承自結構體。

A class can only inherit from a class, not from a struct.

結構體不能被繼承,但是可以實現多個介面。

Structs cannot inherit from another type, but they can implement multiple interfaces.

C#中所有的類的基類為Object類

A class without explicit base class inherits from Object.

2.Assignments and Type Checks分配和類型檢查

class A {...}

class B : A {...}

class C: B {...}

 

 clip_image002

clip_image003

  3.Overriding Methods重寫方法

  只有在父類中聲明為Virtual的方法才可以在子類中重寫

  Only methods that are declared as virtual can be overridden in subclasses

  clip_image004

  方法簽名必須相同;

  Method signatures must be identical

  same number and types of parameters (including function type!)

  same visibility (public, protected, ...).

  屬性和索引器同樣可以被重寫(對應關鍵字virtual 和 override);

  Properties and indexers can also be overridden (virtual, override).

  靜態方法不可以被重寫。

  Static methods cannot be overridden.

4.Dynamic Binding 動態綁定

動態綁定的好處:可以使用下麵的方法針對不同類構造出的實例對象均有效。

class A {

public virtual void WhoAreYou() { Console.WriteLine("I am an A"); }

}

class B : A {

public override void WhoAreYou() { Console.WriteLine("I am a B"); }

}

調用舉例:

A a = new B();

a.WhoAreYou();                // "I am a B"

動態綁定舉例:

void Use (A x) {

x.WhoAreYou();

}

Use(new A());        // "I am an A"

Use(new B());        // "I am a B"

 

 clip_image005

5.Hiding覆蓋

在子類中成員函數可以被new關鍵字修飾;

使用new關鍵字修飾可以將那些和父類有相同函數名和簽名的成員函數隱藏;

舉例說明:

class A {

public int x;

public void F() {...}

public virtual void G() {...}

}

class B : A {

public new int x;

public new void F() {...}

public new void G() {...}

}

B b = new B();

b.x = ...;                // accesses B.x調用 b的x

b.F(); ... b.G();        // calls B.F and B.G調用的F函數和G函數

((A)b).x = ...;        // accesses A.x 調用A的x

((A)b).F(); ... ((A)b).G();         // calls A.F and A.G(although the dynamic type of (A)b is B)

//調用A的F函數和G函數,儘管(A)b的類型是B

6.Dynamic Binding (with Hiding)動態綁定(帶覆蓋即new關鍵字)

舉例說明:

clip_image007

第一個簡單的例子:

clip_image008

 

稍複雜點的例子:

clip_image009

7.子類中的構造函數

clip_image010

8.Visibility protected and internal可見性保護和internal

Protected:

在當前類中可見以及子類中可見

Visible in the declaring class and its subclasses(more restrictive than in Java)

Internal:

在當前Assembly可見

Visible in the declaring assembly (see later)

protected internal:

在當前類中、子類中、當前Assembly中可見

Visible in declaring class, its subclasses and the declaring assembly

clip_image011

9.抽象類和抽象方法

abstract class Stream {

public abstract void Write(char ch);

public void WriteString(string s) { foreach (char ch in s) Write(ch); }

}

class File : Stream {

public override void Write(char ch) {... write ch to disk ...}

}

註釋:

抽象方法不能有實現;

Abstract methods do not have an implementation.

抽象方法隱藏著virtual關鍵字;

Abstract methods are implicitly virtual.

如果一個類中有抽象方法那麼這個類也要聲明為抽象類;

If a class has abstract methods (declared or inherited) it must be abstract itself.

抽象類不能實例化對象

One cannot create objects of an abstract class..

10.Abstract Properties and Indexers抽象屬性和抽象索引器

abstract class Sequence {

public abstract void Add(object x);         // method

public abstract string Name { get; }         // property

public abstract object this [int i] { get; set; } // indexer

}

class List : Sequence {

public override void Add(object x) {...}

public override string Name { get {...} }

public override object this [int i] { get {...} set {...} }

}

 重寫的索引器和屬性必須有和基類相同的get和set方法

Overriding indexers and properties must have the same get and set methods as in the base class

11.Sealed Classes 密封類

sealed class Account : Asset {

long balance;

public void Deposit (long x) { ... }

public void Withdraw (long x) { ... }

...

}

 註釋:

密封類不能擴展即繼承(在Java中對應關鍵字final),但是可以繼承自其他類;

sealed classes cannot be extended (same as final classes in Java),
but they can inherit from other classes.

重寫方法可以被聲明為單獨的密封

override methods can be declared as sealed individually

12.Class System.Object Object類

class Object {

protected object        MemberwiseClone() {...}

public Type         GetType() {...}

public virtual bool         Equals (object o) {...}

public virtual string        ToString() {...}

public virtual int         GetHashCode() {...}

}

//Directly usable:

Type t = x.GetType();//returns a type descriptor (for reflection)

object copy = x.MemberwiseClone();//淺拷貝does a shallow copy (this method is protected)

//Overridable in subclasses:

x.Equals(y) //should compare the values of x and y

x.ToString() //should return a string representation of x

int code = x.GetHashCode(); //should return a hash code for x

 Example

clip_image012

13.重載==和!=運算符

clip_image013


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • ORACLE資料庫中的索引到底要不要定期重建呢? 如果不需要定期重建,那麼理由是什麼? 如果需要定期重建,那麼理由又是什麼?另外,如果需要定期重建,那麼滿足那些條件的索引才需要重建呢?關於這個問題,網上也有很多爭論,也一直讓我有點困惑,因為總有點不得廬山真面目的感覺,直到上周看到了一些資料,遂整理於 ...
  • 資料庫複習⑦ 2016年6月18日 20:03 Main DDL & DML & Views 數據定義語言、數據操縱語言、視圖 DDL數據定義語言 1.聲明一個關係表和刪除一個關係表 Simplest form is: CREATE TABLE <name> ( <list of elements> ...
  • SELECT-FROM-WHERE語句、單表查詢、多表查詢、 ...
  • 在Linux平臺中,對hostname的修改,是否對ORACLE資料庫實例或監聽進程有影響呢?如果有影響,又要如何解決問題呢?另外/etc/hosts下相關內容的修改,是否也會影響實例或監聽呢?這裡涉及的場景非常多,當然關係也非常複雜,我們下麵通過幾個例子來測試驗證一下。 如下所示,伺服器/etc/... ...
  • declare @temp Table ( nf varchar(50), yf varchar(50), sm varchar(50))declare @nd varchar(50), @yd int,@i intset @nd = '2016'if(@nd = year(getdate())) ...
  • 今天是我第一天開通博客,也是我的第一篇博客。以後為大家帶來第一篇關於學習技術性文章,這段時間會為大家帶來是SQL入門學習。希望大家堅持讀下去,因為學歷有限。我也是初學者。語言表達能力不好和知識點不足,我寫的不好,希望大家多多包涵。主要分享給那些想學SQL一個入門教程。主要是T-SQL語言為主。學完這 ...
  • ...
  • 本實例代碼實現了WinForm截屏保存為圖片,親測可行。界面截圖:下載:http://hovertree.com/h/bjaf/scjyuanma.htm以下代碼可以實際運行,在項目HoverTreeCSJ中運行成功。 轉自:http://hovertree.com/h/bjaf/76q5yeli. ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...