可能我有我的flowLayout的問題,它將會是錯誤。我該如何解決請幫助我。有錯誤flowLayout
看來錯誤無法解析符號類FlowLayout。
import java.io.*;
import javax.swing.*;
public class qwe extends JFrame
{
private JButton but;
private JLabel lab;
private JTextField tex;
public qwe()
{
lab = new JLabel("I am a label");
add(lab);
tex = new JTextField(15);
add(tex);
but = new JButton("Click me!");
add(but);
}
public static void main(String args [])
{
qwe gui = new qwe();
gui.setLayout(new FlowLayout());
gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
gui.setSize(200,125);
gui.setVisible(true);
}
}
很可能FlowLayout類未在您的類路徑中設置。 –
@SasiKathimanda我該怎麼做? – Batusai
你真的想擴展一個JFrame?爲什麼不創建新的JFrame呢。 –