中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C#中如何創建和使用泛型

c#
小億
101
2024-04-03 15:55:59
欄目: 編程語言

在C#中,可以使用泛型來創建可以在不同數據類型下重復使用的代碼。以下是在C#中創建和使用泛型的方法:

  1. 創建泛型類:
public class GenericClass<T>
{
    public T Value { get; set; }

    public GenericClass(T value)
    {
        Value = value;
    }

    public void PrintValue()
    {
        Console.WriteLine(Value);
    }
}
  1. 使用泛型類:
GenericClass<int> intGenericClass = new GenericClass<int>(10);
intGenericClass.PrintValue();

GenericClass<string> stringGenericClass = new GenericClass<string>("Hello");
stringGenericClass.PrintValue();
  1. 創建泛型方法:
public T FindMax<T>(T[] array)
{
    if (array == null || array.Length == 0)
    {
        throw new ArgumentException("Array cannot be null or empty");
    }

    T max = array[0];
    foreach (T item in array)
    {
        if (Comparer<T>.Default.Compare(item, max) > 0)
        {
            max = item;
        }
    }

    return max;
}
  1. 使用泛型方法:
int[] intArray = { 3, 7, 2, 9, 5 };
int maxInt = FindMax(intArray);
Console.WriteLine($"Max integer: {maxInt}");

string[] stringArray = { "apple", "banana", "orange" };
string maxString = FindMax(stringArray);
Console.WriteLine($"Max string: {maxString}");

通過上述步驟,我們可以創建和使用泛型類和方法來實現通用的代碼,可以在不同類型的數據上進行操作。

0
淳安县| 元朗区| 确山县| 盐城市| 准格尔旗| 翁牛特旗| 莱芜市| 抚州市| 肇源县| 晋宁县| 清原| 万山特区| 清镇市| 云阳县| 花莲市| 哈尔滨市| 玉树县| 锡林浩特市| 大方县| 云浮市| 罗平县| 时尚| 海南省| 道孚县| 邛崃市| 伊吾县| 大理市| 天水市| 泾源县| 潜山县| 榆社县| 延庆县| 炉霍县| 辽阳县| 馆陶县| 邻水| 临沭县| 司法| 郯城县| 尼木县| 五大连池市|