我的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);
}
}
答案 0 :(得分:0)
您需要导入FlowLayout类
import java.awt.FlowLayout;
而且我也为你提供建议:
仔细观察你的编程逻辑。你必须设置你的qwe框架的布局,然后添加其他组件。