gpt4 book ai didi

c# - default(interface) 会返回什么?

转载 作者:太空狗 更新时间:2023-10-30 00:37:11 26 4
gpt4 key购买 nike

我找到了一些代码,但我不确定返回 default of interface 的目的是什么?

接口(interface)由几个实现

 public ISocketDevicePart Parent => default(ISocketDevicePart);

public interface ISocketDevicePart
{
ISocketDevicePart Parent { get; }
IEnumerable<ISocketDevicePart> Childs { get; }
IXYOffset Offset { get; set; }
}

我不确定结果。它应该返回 null always 吗?

最佳答案

是的,接口(interface)类型变量的默认值是null(它被视为引用类型)。

为了完整性,您可以在 documentation 中查看整个 default() 列表.

关于c# - default(interface) 会返回什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56898899/

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