Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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("Sounds/background.midi");       
    ...
    ...
}

However Eclipse tells me "Cannot make a static reference to the non-static method getClass() from the type Object". How can I solve this?

Thank you.

share|improve this question
Using getResource() before there is an instance of a user defined (e.g. non-J2SE) class will sometimes fail. The problem is that the JRE will be using the bootstrap class-loader at that stage, which will not have application resources on the class-path (of the bootstrap loader). – Andrew Thompson Nov 26 '11 at 0:56

3 Answers

up vote 13 down vote accepted

Just use TheClassName.class instead of getClass().

share|improve this answer

Simply use a class literal, i.e. NameOfClass.class

share|improve this answer

getClass() method is defined in Object class with the following signature:

public final Class getClass()

Since it is not defined as static, you can not call it within a static code block. See these answers for more information: Q1, Q2, Q3.

If you're in a static context, then you have to use the class literal expression to get the Class, so you basically have to do like:

Foo.class

This type of expression is called Class Literals and they are explained in Java Language Specification Book as follows:

A class literal is an expression consisting of the name of a class, interface, array, or primitive type followed by a `.' and the token class. The type of a class literal is Class. It evaluates to the Class object for the named type (or for void) as defined by the defining class loader of the class of the current instance.

You can also find information about this subject on API documentation for Class.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.