gpt4 book ai didi

c# - 为什么不能在结构内部初始化非静态字段?

转载 作者:IT王子 更新时间:2023-10-29 04:39:47 26 4
gpt4 key购买 nike

考虑这个代码块:

struct Animal
{
public string name = ""; // Error
public static int weight = 20; // OK

// initialize the non-static field here
public void FuncToInitializeName()
{
name = ""; // Now correct
}
}
  • 为什么我们可以在结构中初始化static 字段而不是non-static 字段?
  • 为什么我们必须在方法体中初始化non-static

最佳答案

关于c# - 为什么不能在结构内部初始化非静态字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2305122/

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