C# 2008 學習筆記 - 擴充套件函式
轉自:http://www.cnblogs.com/sunrack/articles/1073759.html
一、介紹
使用擴充套件函式,可以為無法修改原始碼的物件新增新的方法,或者強制讓物件支援某些方法,這些方法看起來就是物件本來就有的功能。
二、限制條件
1、必須在static>
static class MyExtensions
{
// This method allows any object to display the assembly
// it is defined in.
public static void DisplayDefiningAssembly(this object obj)
{
Console.WriteLine("{0} lives here:\n\t->{1}\n", obj.GetType().Name,
Assembly.GetAssembly(obj.GetType()));
}
// This method allows any integer to reverse its digits.
// For example, 56 would return 65.
public static int ReverseDigits(this int i)
{
// Translate int into a string, and then
// get all the characters.
char[] digits = i.ToString().ToCharArray();
// Now reverse items in the array.
Array.Reverse(digits);
// Put back into string.
string newDigits = new string(digits);
// Finally, return the modified string back as an int.
return int.Parse(newDigits);
}
}
四、使用物件例項呼叫:
{
Console.WriteLine("***** Fun with Extension Methods *****\n");
// The int has assumed a new identity!
int myInt = 12345678;
myInt.DisplayDefiningAssembly();
// So has the DataSet!
System.Data.DataSet d = new System.Data.DataSet();
d.DisplayDefiningAssembly();
// And the SoundPlayer!
System.Media.SoundPlayer sp = new System.Media.SoundPlayer();
sp.DisplayDefiningAssembly();
// Use new integer functionality.
Console.WriteLine("Value of myInt: {0}", myInt);
Console.WriteLine("Reversed digits of myInt: {0}", myInt.ReverseDigits());
myInt.Foo();
myInt.Foo("Ints that Foo? Who would have thought it!");
bool b2 = true;
// Error! Booleans don't have the Foo() method!
// b2.Foo();
Console.ReadLine();
}
五、使用靜態類呼叫:
{
Console.WriteLine("***** Fun with Extension Methods *****\n");
int myInt = 12345678;
MyExtensions.DisplayDefiningAssembly(myInt);
DataSet d = new DataSet();
MyExtensions.DisplayDefiningAssembly(d);
SoundPlayer sp = new SoundPlayer();
MyExtensions.DisplayDefiningAssembly(sp);
Console.WriteLine("Value of myInt: {0}", myInt);
Console.WriteLine("Reversed digits of myInt: {0}",
MyExtensions.ReverseDigits(myInt));
TesterUtilClass.Foo(myInt);
TesterUtilClass.Foo(myInt, "Ints that Foo? Who would have thought it!");
Console.ReadLine();
}
{
// Every Int32 now has a Foo() method
public static void Foo(this int i)
{ Console.WriteLine("{0} called the Foo() method.", i); }
// which has been overloaded to take a string!
public static void Foo(this int i, string msg)
{ Console.WriteLine("{0} called Foo() and told me: {1}", i, msg); }
}
六、擴充套件函式的使用範圍
擴充套件函式本質上是在被擴充套件的物件例項上可以呼叫的靜態函式,不是繼承,所以不同於普通的成員函式,擴充套件函式不能直接訪問被擴充套件物件的成員。只能通過該物件的例項來訪問。
{
public int Speed;
public int SpeedUp()
{
return ++Speed;
}
}
public static class CarExtensions
{
public static int SlowDown(this Car c)
{
// Error! This method is not deriving from Car!
return --Speed;
}
}
public static class CarExtensions
{
public static int SlowDown(this Car c)
{
// OK!
return --c.Speed;
}
}
static void UseCar()
{
Car c = new Car();
Console.WriteLine("Speed: {0}", c.SpeedUp());
Console.WriteLine("Speed: {0}", c.SlowDown());
}
七、引用擴充套件函式
必須引用定義擴充套件函式的名稱空間,否則擴充套件函式不可用
八、智慧提示
Visual studio 的智慧提示將擴充套件函式標記為向下的藍色箭頭
九、建立擴充套件函式庫
比較好的做法是,定一個類庫,在其中實現擴充套件函式
十、擴充套件介面型別
interface IBasicMath
{
int Add(int x, int y);
}
// Implementation of IBasicMath.
class MyCalc : IBasicMath
{
public int Add(int x, int y)
{
return x + y;
}
}
但是,如果只是如下擴充套件,將會發生錯誤
{
// Extend IBasicMath with subtraction method?
public static int Subtract(this IBasicMath itf,
int x, int y);
}
必須給出函式的實現
{
// Extend IBasicMath this method and this
// implementation.
public static int Subtract(this IBasicMath itf,
int x, int y)
{
return x - y;
}
}
呼叫
{
Console.WriteLine("***** Extending an interface *****\n");
// Call IBasicMath members from MyCalc object.
MyCalc c = new MyCalc();
Console.WriteLine("1 + 2 = {0}", c.Add(1, 2));
Console.WriteLine("1 - 2 = {0}", c.Subtract(1, 2));
// Can also cast into IBasicMath to invoke extension.
Console.WriteLine("30 - 9 = {0}",
((IBasicMath)c).Subtract(30, 9));
// This would NOT work!
// IBasicMath itfBM = new IBasicMath();
// itfBM.Subtract(10, 10);
Console.ReadLine();
}
擴充套件介面後,顯然不能直接在介面上呼叫這些擴充套件函式,只能理解為,所有繼承該介面的物件新增加了這些擴充套件函式功能,
相關文章
- C#學習筆記(補充)——擴充套件方法、事件C#筆記套件事件
- C#學習筆記-方法引數、擴充套件方法C#筆記套件
- 學習筆記----擴充套件歐幾里德筆記套件
- 《從零開始學Swift》學習筆記(Day 51)——擴充套件建構函式Swift筆記套件函式
- PHP的Mhash擴充套件函式的學習PHP套件函式
- swift學習筆記4——擴充套件、協議Swift筆記套件協議
- Swift學習筆記(二十六)——擴充套件Swift筆記套件
- kotlin 擴充套件(擴充套件函式和擴充套件屬性)Kotlin套件函式
- 【Kotlin】擴充套件屬性、擴充套件函式Kotlin套件函式
- 擴充套件中國剩餘定理(EXCRT)學習筆記套件筆記
- 學習PHP中統計擴充套件函式的使用PHP套件函式
- 【C#學習筆記】函式呼叫C#筆記函式
- Kotlin擴充套件函式Kotlin套件函式
- Z 函式(擴充套件KMP)函式套件KMP
- 【C#學習筆記】函式過載C#筆記函式
- ES6學習筆記4--字串的擴充套件筆記字串套件
- 數論學習筆記 (4):擴充套件歐幾里得演算法筆記套件演算法
- 使用Kotlin擴充套件函式擴充套件Spring Data案例Kotlin套件函式Spring
- es6-函式擴充套件函式套件
- C++學習筆記-C++對C語言的函式擴充C++筆記C語言函式
- 《從零開始學Swift》學習筆記(Day 49)——擴充套件宣告Swift筆記套件
- 重學ES6 函式的擴充套件(上)函式套件
- C#可擴充套件程式設計之MEF學習筆記(五):MEF高階進階C#套件程式設計筆記
- 可擴充套件性筆記一套件筆記
- Kotlin-常用擴充套件函式Kotlin套件函式
- HIVE自定義函式的擴充套件Hive函式套件
- Kotlin基礎 — 擴充套件函式Kotlin套件函式
- 【C#學習筆記】類建構函式使用C#筆記函式
- C#可擴充套件程式設計之MEF學習筆記(四):見證奇蹟的時刻C#套件程式設計筆記
- PHP的命令列擴充套件Readline相關函式學習PHP命令列套件函式
- sql中的擴充套件學習SQL套件
- ES6之函式的擴充套件函式套件
- PHP的Sodium加密擴充套件函式了解PHP加密套件函式
- Kotlin的幾個擴充套件函式Kotlin套件函式
- JMeter擴充套件開發:自定義函式JMeter套件函式
- PHP的SPL擴充套件庫(四)函式PHP套件函式
- System Design 關係型資料庫的擴充套件 - 學習筆記資料庫套件筆記
- 學習一個PHP中用於檢測危險函式的擴充套件TaintPHP函式套件AI