首页 > 解决方案 > C# 中的“with”运算符是什么?

问题描述

我遇到了这段代码:

var rectangle = new Rectangle(420, 69);
var newOne = rectangle with { Width = 420 }

我想知道withC# 代码中的关键字。它是干什么用的?以及如何使用它?它给语言带来了什么好处?

标签: c#.netexpressionkeywordc#-9.0

解决方案


它是表达式中使用的运算符,用于更轻松地复制对象,用表达式覆盖它的一些公共属性/字段(可选) - MSDN

目前它只能与记录一起使用。但也许将来不会有这样的限制(假设)。

这是一个如何使用它的示例:

// Declaring a record with a public property and a private field
record WithOperatorTest
{
    private int _myPrivateField;

    public int MyProperty { get; set; }

    public void SetMyPrivateField(int a = 5)
    {
        _myPrivateField = a;
    }
}

现在让我们看看如何with使用运算符:

var firstInstance = new WithOperatorTest
{
    MyProperty = 10
};
firstInstance.SetMyPrivateField(11);
var copiedInstance = firstInstance with { };
// now "copiedInstance" also has "MyProperty" set to 10 and "_myPrivateField" set to 11.

var thirdCopiedInstance = copiedInstance with { MyProperty = 100 };
// now "thirdCopiedInstance " also has "MyProperty" set to 100 and "_myPrivateField" set to 11.

thirdCopiedInstance.SetMyPrivateField(-1);
// now "thirdCopiedInstance " also has "MyProperty" set to 100 and "_myPrivateField" set to -1.

注意 MSDN 中的引用类型:

在引用类型成员的情况下,复制操作数时仅复制对成员实例的引用。副本和原始操作数都可以访问相同的引用类型实例。

可以通过修改记录类型的复制构造函数来修改该逻辑。引用 MSDN:

默认情况下,复制构造函数是隐式的,即编译器生成的。如果您需要自定义记录复制语义,请显式声明具有所需行为的复制构造函数。

protected WithOperatorTest(WithOperatorTest original)
{
   // Logic to copy reference types with new reference
}

就它带来的好处而言,我认为现在应该很明显了,它使复制实例变得更加容易和方便。


推荐阅读