I am fairly new to Java (especially interfaces) and I have this simple comparison interface set up and am wishing to create an integer implementation for it. When I compile, the compiler returns an error stating that I cannot reference this non-static variable in a static context. I understand this error...but I am not sure why it is happening in this context.
The initialization looks correct according to examples I've seen. Perhaps I just need another set of eyes to look at this code and see what I am missing.
I appreciate any help.
public class Test
{
public static void main(String[] args)
{
Icmp test = new Icmp();
}
public interface Cmp
{
public int cmp(Object x, Object y);
}
class Icmp implements Cmp
{
public int cmp(Object o1, Object o2)
{
int i1 = ((Integer) o1).intValue();
int i2 = ((Integer) o2).intValue();
if(i1<i2)
return -1;
else if(i1==i2)
return 0;
else
return 1;
}
}
}
The offending line:
Icmp cmp = new Icmp();
The error:
LabFour.java:20: non-static variable this cannot be referenced from a static context
Icmp cmp = new Icmp();
^
new Icmp()from themainmethod? Etc., etc. – alf Oct 20 '11 at 23:48