设为首页
收藏本站
开启辅助访问
切换到窄版
登录
立即注册
中问网首页
我的收藏
站长博客
搜索
搜索
本版
帖子
用户
第一问答网
»
论坛
›
中问网
›
问答
›
JAVA问题
返回列表
发新帖
JAVA问题
[复制链接]
11
|
1
|
2010-6-9 22:52:44
|
显示全部楼层
|
阅读模式
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
class Test
{
public static void main(String[] args)
{
App ap=new App();
ap.show();
}
}
class App extends JFrame
{
MainPanel mp;
public App()
{
mp=new MainPanel();
this.getContentPane().add(mp);
this.setSize(400,450);
this.setTitle("小游戏");
}
}
class MainPanel extends JPanel
{
ButtonPanel bp=new ButtonPanel();
CtrlPanel rp=new CtrlPanel();
public MainPanel()
{
this.setLayout(new BorderLayout());
rp.btnstart.addActionListener(new StartListener());
this.add(bp,"Center");
this.add(rp,"South");
}
class StartListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
if(e.getActionCommand()=="重新开始")
{
bp.ColorInit();
}
}
}
}
class ButtonPanel extends JPanel
{
JButton[][] b=new JButton[5][5];
public ButtonPanel()
{
this.setLayout(new GridLayout(5,5));
for(int i=0;i0)
this.btnChange(b[r-1][c]);
if(r0)
this.btnChange(b[r][c-1]);
if(c<4)
this.btnChange(b[r][c+1]);
}
}
}
class CtrlPanel extends JPanel
{
JButton btnstart;
public CtrlPanel()
{
btnstart=new JButton("重新开始");
this.add(btnstart);
}
}
帮忙 写出类和成员变量谢了 现在没分。。但是很急帮帮忙把
回复
使用道具
举报
千问
|
2010-6-9 22:52:44
|
显示全部楼层
有6个类:Test ;App;MainPanel;ButtonPanel;MyButtonListener;CtrlPanel成员变量:mp;bp;rp;b; r,c;btnstart
回复
使用道具
举报
返回列表
发新帖
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
立即注册
本版积分规则
发表回复
回帖后跳转到最后一页
千问
主题
0
回帖
4882万
积分
论坛元老
论坛元老, 积分 48824836, 距离下一级还需 -38824837 积分
论坛元老, 积分 48824836, 距离下一级还需 -38824837 积分
积分
48824836
加好友
发消息
回复楼主
返回列表
问答
热门排行