gpt4 book ai didi

c# - C#中的幂等接口(interface)方法

转载 作者:行者123 更新时间:2023-12-02 20:12:09 25 4
gpt4 key购买 nike

我正在尝试创建一个接口(interface),该接口(interface)返回实现该接口(interface)的实例的修改副本,并且不会修改原始实例。

public interface ICensoreable<T> {
T GetCensored();
}

以及实现的对象

public class User:ICensoreable<User> {
public User(User copyFrom) {
this.name = copyFrom.name;
this.password = copyFrom.password;
}

public string name;
public string password;

public User GetCensored() {
User result = new User(this);
result.password = null;

return result;
}
}

有没有办法强制在接口(interface)上 GetCensored 不会修改 User(或 T)实例?

最佳答案

随着最近发布的 C# 8.0,您现在可以在界面中定义默认方法实现。因此,您将能够默认强制执行 GetCensored()方法不会修改原始实例。通过将默认实现标记为 sealed ,实现该接口(interface)的类型禁止显式重新实现该方法。由于该方法仅在接口(interface)中实现,因此需要将对象强制转换为 ICensoreable<T>在调用 GetCensored() 之前方法。

这是我使用的实现:

public interface ICensoreable<T>
{
sealed ICensoreable<T> GetCensored()
{
var result = Clone();
result.CensorInformation();
return result;
}

ICensoreable<T> Clone();
void CensorInformation();
}

public class User : ICensoreable<User>
{
public User(User other)
{
name = other.name;
password = other.password;
}

public string name;
public string password;

public void CensorInformation()
{
password = null;
}

public User Clone() => new User(this);
ICensoreable<User> ICensoreable<User>.Clone() => Clone();
}

使用GetCensored()方法:

var user = new User();
var censored = ((ICensoreable<User>)user).GetCensored();

注意:截至撰写本文时,此实现 抛出 NullReferenceExceptionGetCensored() 的第一行方法(在 VS 16.4.0 Preview 2.0 上使用 C# 8.0)。我个人认为这是一个错误,因为删除了 sealed使用完全相同的代码,关键字不会导致任何问题。此外,我尝试了另一种实现,其中涉及初始化 T 类型的新对象。 ,也崩溃了。该行是 var result = new T();它抛出了 NullReferenceException . 此问题在 VS 16.5.4 及以后版本中得到修复,并且代码可以正确运行。

理论上,根据提案,sealed关键字只是防止类型覆盖接口(interface)方法并仅保留默认实现。

编辑1:目前在 VS 16.4.0 Preview 5.0 中,抛出的异常是 AccessViolationException: 'Attempted to read or write protected memory. This is often an indication that other memory is corrupt.' 。经过一番调查后,我意识到该错误已经存在几周了,相关的GitHub issue 。根据某人的说法,此问题已在 16.5.0 预览版 1.0 及后续版本之后修复 fix .

编辑2:目前在VS 16.5.0 Preview 1.0中,异常仍然是相同的;目前尚未发布针对此问题的修复程序。

最终编辑:从 VS 16.5.4 开始(我希望),这段代码可以正常工作。没有抛出异常。

关于c# - C#中的幂等接口(interface)方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55921154/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com