Hi all,
Im new to java.
I get this error.
Non-static variable this cannot be referenced from a static context
myClass c=new myClass()
^
this is my code
public class MyOwnBm{
private Hashtable myHash=new Hashtable();
public static void main(String[] args)
{
myClass c=new myClass();
c.match();
}
public class myClass{....}
}
PLZ... help me I've wasted hours on this.