File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Beginning Java and the fly likes static Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "static" Watch "static" New topic
Author

static

nida lulu
Greenhorn

Joined: Nov 25, 2008
Posts: 10
what does it mean if i have a compiler error saying "non-static method cannot be referenced from a static context"? I was trying to call a method from another class into a method in the current class I am using, i labeled neither one as static, they are both void methods.
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32654
    
    4
The static data/methods refer to the class, and instance data may be different for different objects from this class. So static methods don't know which object they are calling, if there are several objects, so the compiler doesn't allow a static method to call anything which is not static.
You are not allowed to use the keywords this and super in a static method, either.

I don't know whether this helps your present problem; please post more details.
Jay Shukla
Ranch Hand

Joined: Jun 08, 2008
Posts: 214
Hi nida,

Can you please put the code (if small enough that you can put) ? It may help to explain more in details.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: static
 
Similar Threads
How to call static methods from non static methods
java.util.array not recognised
Please suggest how to inherit static method from class and override one method among that?
Static and non Static methods
Master exam question