gpt4 book ai didi

C# struct new StructType() 与 default(StructType)

转载 作者:IT王子 更新时间:2023-10-29 03:48:50 25 4
gpt4 key购买 nike

假设我有一个结构

public struct Foo
{
...
}

有什么区别吗

Foo foo = new Foo();

Foo foo = default(Foo);

?

最佳答案

您可能想知道,如果它们完全相同,为什么有两种方法可以做同样的事情。

它们并不完全相同,因为每个引用类型或值类型都保证有一个默认值但不是每个引用类型都保证有一个无参数构造函数:

static T MakeDefault<T>()
{
return default(T); // legal
// return new T(); // illegal
}

关于C# struct new StructType() 与 default(StructType),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4974063/

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