What is the reason behind quot;non-static method cannot be referenced from a static contextquot;?(“无法从静态上下文引用非静态方法背后的原因是什么?)
问题描述
非常常见的初学者错误是当您尝试静态"使用类属性时.没有创建该类的实例.它会给您留下上述错误消息:
The very common beginner mistake is when you try to use a class property "statically" without making an instance of that class. It leaves you with the mentioned error message:
您可以将非静态方法设为静态或将该类的实例设为使用其属性.
You can either make the non static method static or make an instance of that class to use its properties.
这背后的原因是什么?我关心的不是解决方案,而是原因.
private java.util.List<String> someMethod(){
/* Some Code */
return someList;
}
public static void main(String[] strArgs){
// The following statement causes the error.
java.util.List<String> someList = someMethod();
}
推荐答案
你不能调用不存在的东西.由于您尚未创建对象,因此非静态方法尚不存在.静态方法(根据定义)始终存在.
You can't call something that doesn't exist. Since you haven't created an object, the non-static method doesn't exist yet. A static method (by definition) always exists.
这篇关于“无法从静态上下文引用非静态方法"背后的原因是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“无法从静态上下文引用非静态方法"背后的原因是什么?
基础教程推荐
- 在螺旋中写一个字符串 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01