溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C#中abstract修飾符的作用是什么

發(fā)布時(shí)間:2021-07-07 17:13:14 來(lái)源:億速云 閱讀:154 作者:Leah 欄目:編程語(yǔ)言

C#中abstract修飾符的作用是什么,針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。

C# abstract修飾符是什么意思?

C# abstract修飾符可以用于類(lèi)、方法、屬性、事件和索引指示器(indexer),表示其為抽象成員 abstract 不可以和 static 、virtual 一起使用聲明為 abstract 成員可以不包括實(shí)現(xiàn)代碼,但只要類(lèi)中還有未實(shí)現(xiàn)的抽象成員(即抽象類(lèi)),那么它的對(duì)象就不能被實(shí)例化,通常用于強(qiáng)制繼承類(lèi)必須實(shí)現(xiàn)某一成員。

示例:

using System;  using System.Collections.Generic;  using System.Text;     namespace Example04  {  #region 基類(lèi),抽象類(lèi)  public abstract class BaseClass  {  //抽象屬性,同時(shí)具有g(shù)et和set訪問(wèn)器表示繼承類(lèi)必須將該屬性實(shí)現(xiàn)為可讀寫(xiě)  public abstract String Attribute  {  get;  set;  }     //抽象方法,傳入一個(gè)字符串參數(shù)無(wú)返回值  public abstract void Function(String value);     //抽象事件,類(lèi)型為系統(tǒng)預(yù)定義的代理(delegate):EventHandler  public abstract event EventHandler Event;     //抽象索引指示器,只具有g(shù)et訪問(wèn)器表示繼承類(lèi)必須將該索引指示器實(shí)現(xiàn)為只讀  public abstract Char this[int Index]  {  get;  }  }  #endregion     #region 繼承類(lèi)  public class DeriveClass : BaseClass  {  private String attribute;     public override String Attribute  {  get  {  return attribute;  }  set  {  attribute = value;  }  }  public override void Function(String value)  {  attribute = value;  if (Event != null)  {  Event(this, new EventArgs());  }  }  public override event EventHandler Event;  public override Char this[int Index]  {  get  {  return attribute[Index];  }  }  }  #endregion     class Program  {  static void OnFunction(object sender, EventArgs e)  {  for (int i = 0; i < ((DeriveClass)sender).Attribute.Length; i++)  {  Console.WriteLine(((DeriveClass)sender)[i]);  }  }  static void Main(string[] args)  {  DeriveClass tmpObj = new DeriveClass();     tmpObj.Attribute = "1234567";  Console.WriteLine(tmpObj.Attribute);     //將靜態(tài)函數(shù)OnFunction與tmpObj對(duì)象的Event事件進(jìn)行關(guān)聯(lián)  tmpObj.Event += new EventHandler(OnFunction);     tmpObj.Function("7654321");     Console.ReadLine();  }  }  }

關(guān)于C#中abstract修飾符的作用是什么問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI