0
import javax.swing。 ; import java.awt。;爲什麼我不能使用BorderLayout類框架中的setLayout方法?
公共類的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...
}
}
謝謝你! 我用它與其他類相同,它工作正常。我一直無法確定這個錯誤。 –