本文介绍了如何从Java中的静态方法调用getClass()?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个必须有一些静态方法的类。在这些静态方法中,我需要调用方法getClass()来进行以下调用:
public static void startMusic(){
URL songPath = getClass()。getClassLoader()。getResource(background.midi);
}
然而Eclipse告诉我:
无法对类型为Object
$ p的非静态方法getClass()
进行静态引用$ p>
修复此编译时错误的适当方法是什么?
解决方案只需使用
TheClassName.class
而不是getClass()
。I have a class that must have some static methods. Inside these static methods I need to call the method getClass() to make the following call:
public static void startMusic() { URL songPath = getClass().getClassLoader().getResource("background.midi"); }
However Eclipse tells me:
Cannot make a static reference to the non-static method getClass() from the type Object
What is the appropriate way to fix this compile time error?
解决方案Just use
TheClassName.class
instead ofgetClass()
.这篇关于如何从Java中的静态方法调用getClass()?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!