“无法从静态上下文引用非静态方法”背后的原因是什么? [英] What is the reason behind "non-static method cannot be referenced from a static context"?

查看:107
本文介绍了“无法从静态上下文引用非静态方法”背后的原因是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

非常常见的初学者错误是当你尝试静态地使用类属性而不创建该类的实例时。它会留下您提到的错误消息:

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. You know why..
    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.

这篇关于“无法从静态上下文引用非静态方法”背后的原因是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆