在C#7.0中,我可以为类声明以下解构函数:

public class Customer
{
    public string FirstName { get; }
    public string LastName { get; }
    public string Email { get; }

    public Customer(string firstName, string lastName)
    {
        FirstName = firstName;
        LastName = lastName;
    }

    public void Deconstructor(out string firstName, out string lastName, out string company)
    {
        firstName = FirstName;
        lastName = LastName;
        company = "Nop-Templates";
    }

    public void Deconstructor(out string firstName, out string lastName)
    {
        firstName = FirstName;
        lastName = LastName;
    }
}

我想在解构函数中使用我们的变量而不是直接返回元组的想法是,以便您可以对解构函数进行不同的重载。但是,我似乎无法将对象解构为三个变量。我只能将其解构为两个变量。

例如,这不会编译:
(string firstName, string lastName, string company) = customer;

我得到这个错误:

“不能将'2'元素的元组解构为'3'变量。”

但这确实可行:
(string firstName, string lastName) = customer;

我想念什么?

最佳答案

您已经调用了方法Deconstructor,而不是Deconstruct。另外,您不能在两个元组中重新声明firstNamelastName。进行这些更改,下面的代码行都可以正常编译:

var customer = new Customer("a", "b");
(string firstName1, string lastName1, string company) = customer;
(string firstName2, string lastName2) = customer;

关于c# - 是否可以在C#7.0中重载解构函数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41932624/

10-15 03:32