我对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;
那么任何人都可以解释一下有什么特殊原因吗?