为什么Java程序运行后没有出现窗体
packagehelloworld;importjava.awt.Container;importjavax.swing.*;publicclasshelloworld{...
package helloworld;
import java.awt.Container;
import javax.swing.*;
public class helloworld
{
JFrame frame;
JButton a[][];
public static void main(String[] args)
{
helloworld that = new helloworld();
that.go();
}
void go()
{
frame = new JFrame("mineclear");
Container contentpane = frame.getContentPane();
contentpane.setLayout(null);
a = new JButton[10][10];
}
} 展开
import java.awt.Container;
import javax.swing.*;
public class helloworld
{
JFrame frame;
JButton a[][];
public static void main(String[] args)
{
helloworld that = new helloworld();
that.go();
}
void go()
{
frame = new JFrame("mineclear");
Container contentpane = frame.getContentPane();
contentpane.setLayout(null);
a = new JButton[10][10];
}
} 展开
2个回答
展开全部
void go(){
最后一句 frame.setViseble(true);函数名大概是这个,自己看智能提示找吧
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询