C#學習筆記(六)抽象類別 訪問限制關鍵字 委託 事件

來源:互聯網
上載者:User

第二十九講 抽象類別

抽象類別:專門用於繼承的類
1.聲明一個抽象類別使用abstract關鍵字
2.一個抽象類別中可以包含幾個抽象方法。也使用abstract
3.抽象類別中可以存在非抽象的方法
4.抽象類別不能被直接被執行個體化

覆蓋父類中的抽象方法 override

代碼部分

private void Form1_Load(object sender,
EventArgs e) {
//抽象類別不能實類化
//Person theStudent = new Person();

Person theStudent = new Student();
theStudent.SayHello();
theStudent.about();
//*/
}

}
public abstract class Person
{
public abstract void SayHello();
public void about( ){MessageBox.Show("我是一
個人!!");}
}
public class Student:Person
{
public override void SayHello() {
MessageBox.Show("Hello!!");
}
}

第三十講 訪問限制關鍵字

類成員的訪問關鍵字
public: 訪問不受限制
private:只有所在類可以使用
protected:僅限於類或衍生類別使用、
internal:僅限於當前程式集
protected internal:僅限於當前程式及或從衍生類別

一般用.dll格式的出現

第三十一講 所有類的父類 object

object也有成員方法,最具代表性的是ToString()
包括基礎資料型別 (Elementary Data Type):int string,bool等

Person thePerson = new Person();
this.textBox1.Text =
thePerson.ToString();//將類的名字列印出來

public class Person {
string name = "wo ";
/*public override string ToString() {
return name;
}
//*/
}

第三十二講 委託

關於委託的幾種說法:
1.委託是一種類型。但是委託定義了方法的類型。
2.這樣,把方法作為參數進行傳遞成為可能

delegate void GreetingDelegate(string name);
void EnglishGreeting(string name);
void ChineseGreeting(string name);

委託鏈:

委託不同於string的一個特性:可以將多個方法捆綁到同一個委託對
象上,形成委託鏈,當調用這個委派物件的時候,將一次調用委託鏈
中的方法。有批處理的效果

代碼部分:(需要好好看)

namespace _234 {
public delegate void GreetingDelegate(string name);
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
private void GreetPeople(string name,
GreetingDelegate MakeGreeting) {
MakeGreeting(name);
}
private void EnglishGreeting(string name) {
MessageBox.Show("Morning" + name);
}
private void ChineseGreeting(string name) {
MessageBox.Show("早上好" + name);
}

private void Form1_Load(object sender,
EventArgs e) {
/*
GreetPeople("ouxiang",
EnglishGreeting);
GreetPeople("偶像",
ChineseGreeting);
//*/
//GreetingDelegate delegate1 = new
GreetingDelegate( );
GreetingDelegate delegate1 = new
GreetingDelegate(EnglishGreeting);
delegate1 = ChineseGreeting;
delegate1 += EnglishGreeting;
delegate1 += ChineseGreeting;
delegate1("zhang節");
}

}

}

第三十三節 事件

1.委託是一種自訂的類型。委託定義了方法的類型。

2.事件是委託的執行個體,使用委託執行個體的委託鏈註冊一些方法。使用+=
註冊,-=撤銷

3.當時間發生的時候,調用委託鏈中的這些方法。不妨稱這些方法為
事件處理函數。

using Delegate;

namespace _234 {
public delegate void GreetingDelegate(string name);
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e) {
Heater heater = new Heater();
Alarm alarm = new Alarm();
Display display = new Display();
heater.BoilEvent += alarm.MakeAlert; //註冊方法
heater.BoilEvent += alarm.MakeAlert; //註冊方法
heater.BoilEvent += display.ShowMsg; //註冊方法
heater.BoilWater(); //燒水,溫度達到99時觸發事件
}

}

}
namespace Delegate {
//熱水器類
public class Heater {
private int temperature = 0; //聲明成員變數
public delegate void BoilHandler(int param); //聲明委託
public event BoilHandler BoilEvent; //聲明事件
//燒水方法
public void BoilWater() {
for(int i=1; i<=100; i++){
temperature++;
if (temperature >= 99 && BoilEvent != null) {
BoilEvent(temperature); //調用所有註冊的方法
}
}
}

}
//警報器類
public class Alarm {
public void MakeAlert(int param) {
MessageBox.Show("響鈴:滴滴滴,誰開了,度數為:" + param.ToString());
}
}
//顯示器類
public class Display {
public void ShowMsg(int param) {
MessageBox.Show("顯示當前溫度為:" + param.ToString());
}

}
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.