package mygridLayout;
import java.awt.*;
import javax.swing.*;
public class MyGridLayout
{
JFrame f;
MyGridLayout()
{
f = new JFrame();
JButton b1 = new JButton("1");
JButton b2 = new JButton("2");
JButton b3 = new JButton("3");
JButton b4 = new JButton("4");
JButton b5 = new JButton("5");
JButton b6 = new JButton("6");
JButton b7 = new JButton("7");
JButton b8 = new JButton("8");
JButton b9 = new JButton("9");
f.add(b1);
f.add(b2);
f.add(b3);
f.add(b4);
f.add(b5);
f.add(b6);
f.add(b7);
f.add(b8);
f.add(b9);
f.setLayout(new GridLayout(3,3));
f.setSize(300,300);
f.setVisible(true);
}
public static void main(String[] args)
{
new MyGridLayout();
}
}
错误:无法找到或加载主类mygridlayout.MyGridLayout C:\用户\首页\应用程序数据\本地\ NetBeans的\缓存\ 8.2 \执行-片段\ run.xml:53: Java返回:1 BUILD FAILED(总时间:0秒)
答案 0 :(得分:1)
如果您只想运行该文件,请右键单击包浏览器中的类,然后单击“运行文件”或( Alt + R , F )或( Shift + F6 )