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.
有人可以解释为什么您不能在私有方法中使用“this”吗?
或者也许我读错了;它列出了一个私有方法并说“不适用于 this.operator”?
我的猜测是您正在尝试this在private static方法中使用。这是不允许的,因为:
this
private static
this指的是目标对象,并且
static方法没有目标对象的概念。
static
如果那没有帮助,请发布代码片段和确切的编译错误消息/上下文。
- static处理类,而不是类的实例。
- this 仅适用于类的实例,不适用于static成员。
-所以this 在一个private static方法内是行不通的。