I'm aware this won't work but it's just an example so I can understand why it won't work.
public class MyClass {
final static JButton b;
public void myMethod() {
b = new JButton("Hello!");
}
}
1) Why is there an error is the final static JButton b; line? But this error disappears when I remove the static keyword?
2) With or without the static keyword, there is an error is the line b = new JButton("Hello!"); and I'm wondering why this is? I mean, I thought it would be okay to have a final variable instantiated within a method?
