I've just started to learn java and I'm having some problem with static/non-static. The problem with my code is within the actionlistener. When I try to compile it, it says
non-static method cannot be referenced from a static context.
Am I right to think that a action performed is static? If so, how can I use a actionlistener to perform a method?(I am well aware that I could just put the text in my code, into the actionlistener. But if I had different circumstnces...)
public class But extends JFrame{
public void test(){
//A method
System.out.println("Testing");
}
}
class TestListener implements ActionListener{
public TestListener(){}
public void actionPerformed(ActionEvent e) {
But.test();
}}