为什么我不能使用带有BorderLayout的类Frame中的setLayout方法?

时间:2016-05-04 21:42:19

标签: java user-interface layout frame border-layout

import javax.swing。; import java.awt。;

public class BorderLayout {

public static void main(String[] args) {
    // TODO Auto-generated method stub
    JFrame frame = new JFrame();
    frame.setTitle("This is a Border Layout example!");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    frame.setLayout(new BorderLayout()); //ERROR HERE...

}

}

1 个答案:

答案 0 :(得分:0)

我看到你的错误:
您将类命名为BorderLayout,因此new BorderLayout()实例化您的类的新对象而不是想要的BorderLayout。