溫馨提示×

c#方法 如何實現(xiàn)方法鏈

c#
小樊
84
2024-07-14 05:21:21
欄目: 編程語言

在C#中,可以通過在方法中返回this對象來實現(xiàn)方法鏈。例如:

public class MyClass
{
    private int value;

    public MyClass SetValue(int val)
    {
        this.value = val;
        return this;
    }

    public MyClass Add(int val)
    {
        this.value += val;
        return this;
    }

    public int GetValue()
    {
        return this.value;
    }
}

class Program
{
    static void Main()
    {
        MyClass myClass = new MyClass();
        int result = myClass.SetValue(5).Add(3).GetValue();

        Console.WriteLine(result);  // Output: 8
    }
}

在上面的例子中,SetValue和Add方法都返回this對象,這樣就可以在同一行代碼中調(diào)用多個方法,形成方法鏈。

0