C # - Generics
Genericsอนุญาตให้คุณกำหนดข้อกำหนดของประเภทข้อมูลขององค์ประกอบการเขียนโปรแกรมในคลาสหรือวิธีการจนกว่าจะมีการใช้งานจริงในโปรแกรม กล่าวอีกนัยหนึ่ง generics ช่วยให้คุณสามารถเขียนคลาสหรือวิธีการที่สามารถทำงานกับข้อมูลประเภทใดก็ได้
คุณเขียนข้อกำหนดสำหรับคลาสหรือวิธีการโดยมีพารามิเตอร์ทดแทนสำหรับชนิดข้อมูล เมื่อคอมไพลเลอร์พบคอนสตรัคเตอร์สำหรับคลาสหรือการเรียกใช้ฟังก์ชันสำหรับเมธอดคอมไพเลอร์จะสร้างโค้ดเพื่อจัดการกับชนิดข้อมูลเฉพาะ ตัวอย่างง่ายๆจะช่วยให้เข้าใจแนวคิด -
using System;
using System.Collections.Generic;
namespace GenericApplication {
public class MyGenericArray<T> {
private T[] array;
public MyGenericArray(int size) {
array = new T[size + 1];
}
public T getItem(int index) {
return array[index];
}
public void setItem(int index, T value) {
array[index] = value;
}
}
class Tester {
static void Main(string[] args) {
//declaring an int array
MyGenericArray<int> intArray = new MyGenericArray<int>(5);
//setting values
for (int c = 0; c < 5; c++) {
intArray.setItem(c, c*5);
}
//retrieving the values
for (int c = 0; c < 5; c++) {
Console.Write(intArray.getItem(c) + " ");
}
Console.WriteLine();
//declaring a character array
MyGenericArray<char> charArray = new MyGenericArray<char>(5);
//setting values
for (int c = 0; c < 5; c++) {
charArray.setItem(c, (char)(c+97));
}
//retrieving the values
for (int c = 0; c< 5; c++) {
Console.Write(charArray.getItem(c) + " ");
}
Console.WriteLine();
Console.ReadKey();
}
}
}
เมื่อโค้ดด้านบนถูกคอมไพล์และเรียกใช้งานจะให้ผลลัพธ์ดังนี้ -
0 5 10 15 20
a b c d e
คุณสมบัติของ Generics
Generics เป็นเทคนิคที่ทำให้โปรแกรมของคุณสมบูรณ์ขึ้นด้วยวิธีต่อไปนี้ -
ช่วยให้คุณสามารถใช้โค้ดซ้ำพิมพ์ความปลอดภัยและประสิทธิภาพได้สูงสุด
คุณสามารถสร้างคลาสคอลเลกชันทั่วไปได้ ไลบรารีคลาส. NET Framework ประกอบด้วยคลาสคอลเลกชันทั่วไปใหม่หลายคลาสในเนมสเปซSystem.Collections.Generic คุณสามารถใช้คลาสคอลเลกชันทั่วไปเหล่านี้แทนคลาสคอลเลกชันในเนมสเปซSystem.Collections
คุณสามารถสร้างอินเทอร์เฟซคลาสวิธีเหตุการณ์และผู้รับมอบสิทธิ์ทั่วไปของคุณเองได้
คุณสามารถสร้างคลาสทั่วไปที่ จำกัด เพื่อให้สามารถเข้าถึงเมธอดในประเภทข้อมูลเฉพาะได้
คุณอาจได้รับข้อมูลเกี่ยวกับประเภทที่ใช้ในประเภทข้อมูลทั่วไป ณ รันไทม์โดยวิธีการสะท้อนกลับ
วิธีการทั่วไป
ในตัวอย่างก่อนหน้านี้เราได้ใช้คลาสทั่วไป เราสามารถประกาศวิธีการทั่วไปด้วยพารามิเตอร์ type โปรแกรมต่อไปนี้แสดงแนวคิด -
using System;
using System.Collections.Generic;
namespace GenericMethodAppl {
class Program {
static void Swap<T>(ref T lhs, ref T rhs) {
T temp;
temp = lhs;
lhs = rhs;
rhs = temp;
}
static void Main(string[] args) {
int a, b;
char c, d;
a = 10;
b = 20;
c = 'I';
d = 'V';
//display values before swap:
Console.WriteLine("Int values before calling swap:");
Console.WriteLine("a = {0}, b = {1}", a, b);
Console.WriteLine("Char values before calling swap:");
Console.WriteLine("c = {0}, d = {1}", c, d);
//call swap
Swap<int>(ref a, ref b);
Swap<char>(ref c, ref d);
//display values after swap:
Console.WriteLine("Int values after calling swap:");
Console.WriteLine("a = {0}, b = {1}", a, b);
Console.WriteLine("Char values after calling swap:");
Console.WriteLine("c = {0}, d = {1}", c, d);
Console.ReadKey();
}
}
}
เมื่อโค้ดด้านบนถูกคอมไพล์และเรียกใช้งานจะให้ผลลัพธ์ดังนี้ -
Int values before calling swap:
a = 10, b = 20
Char values before calling swap:
c = I, d = V
Int values after calling swap:
a = 20, b = 10
Char values after calling swap:
c = V, d = I
ผู้รับมอบสิทธิ์ทั่วไป
คุณสามารถกำหนดตัวแทนทั่วไปด้วยพารามิเตอร์ชนิด ตัวอย่างเช่น -
delegate T NumberChanger<T>(T n);
ตัวอย่างต่อไปนี้แสดงการใช้ผู้รับมอบสิทธิ์นี้ -
using System;
using System.Collections.Generic;
delegate T NumberChanger<T>(T n);
namespace GenericDelegateAppl {
class TestDelegate {
static int num = 10;
public static int AddNum(int p) {
num += p;
return num;
}
public static int MultNum(int q) {
num *= q;
return num;
}
public static int getNum() {
return num;
}
static void Main(string[] args) {
//create delegate instances
NumberChanger<int> nc1 = new NumberChanger<int>(AddNum);
NumberChanger<int> nc2 = new NumberChanger<int>(MultNum);
//calling the methods using the delegate objects
nc1(25);
Console.WriteLine("Value of Num: {0}", getNum());
nc2(5);
Console.WriteLine("Value of Num: {0}", getNum());
Console.ReadKey();
}
}
}
เมื่อโค้ดด้านบนถูกคอมไพล์และเรียกใช้งานจะให้ผลลัพธ์ดังนี้ -
Value of Num: 35
Value of Num: 175