解构函数(Deconstruct)
元组的解构是C#内置支持的。
var countrInfo = ("Malawi", "Lilongwe", io); (string name, string ii, var gdpPerCapit) = countrInfo;
对于非元组类型的解构,C# 不提供内置支持。但是,用户作为类、结构或接口的创建者,
我们如何实现自定义 类或结构 的解构
可通过实现Deconstruct 方法来析构该类型的实例。该方法返回 void,且要析构的每个值由方法签名中的 out 参数指示。
public struct Point { public Point(int x, int y) => (X, Y) = (x, y); public int X { get; } public int Y { get; } public override string ToString() => $"X:{X} Y:{Y}"; public void Deconstruct(out int x, out int y) => (x, y) = (X, Y); } static void Main() { Point io = new(1,2); (var name, var gdpPerCapit) =io; Console.WriteLine(gdpPerCapit); }
编程是个人爱好