我对
java中静态方法的使用感到困惑,例如,如果main方法是静态的,那么它是有意义的,但是编码时我们已经有了对象
JFrame frame= new JFrame(); frame.setDefaultCloSEOperation(JFrame.EXIT_ON_CLOSE);// here why not frame.EXIT_ON_CLOSE
同样的方式,当我们使用
GridBagConstraints c= new GridBagConstraints();// we have an object but still c.anchor = GridBagConstraints.PAGE_END;
任何人都可以解释一下,有什么特别的原因吗?