gpt4 book ai didi

c# - 应该在通用类字段中使用 default(T) 或...将其初始化为默认值?

转载 作者:太空宇宙 更新时间:2023-11-03 18:44:05 27 4
gpt4 key购买 nike

With generics Default can be used to set a type parameter to its default value. This is clearly helpful given that a generic type does not know the actual placeholders up front and therefore cannot safely assume what the default value will be

什么时候应该通过 default(T) 初始化泛型类字段,什么时候应该让编译器将字段设置为其默认值,或者这只是一个偏好问题:

public class myType<T>
{
public T _unkonwType1 = default(T);
public T _unknownType2;
}

谢谢

最佳答案

不,字段从不需要初始化为其默认值。 (无论何时实例化类,它们都会如此初始化。)

关于c# - 应该在通用类字段中使用 default(T) 或...将其初始化为默认值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5915618/

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