如何从Java中的静态方法调用getClass()? [英] How to call getClass() from a static method in Java?

查看:140
本文介绍了如何从Java中的静态方法调用getClass()?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个必须有一些静态方法的类。在这些静态方法中,我需要调用方法getClass()来进行以下调用:

  public static void startMusic(){ 
URL songPath = getClass()。getClassLoader()。getResource(background.midi);
}

然而Eclipse告诉我:

 无法对类型为Object 
进行静态引用$ 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 of getClass().

这篇关于如何从Java中的静态方法调用getClass()?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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