Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我想private在属性中使用非静态字段时public static,我的非静态字段出现了一些编译错误private,当我创建它时static,一切正常。
private
public static
static
我对编译器不太了解,所以我想知道为什么支持字段也应该是static?
如果支持字段不是静态的,那么当您在静态属性访问器中使用它时,您将如何获取该字段的实例?请记住,static成员上的修饰符意味着该成员与类型本身相关联,而不是与该类型的特定实例相关联。为了使静态属性起作用,它必须有一个本身是静态的支持字段,以便可以相应地实现它。
出于同样的原因,您不能在没有实例的情况下访问静态方法中的任何非静态成员。