资源简介

自己用java写的一个赛马的小游戏,用到了多线程和java swing ,分享给大家!

资源截图

代码片段和文件信息

package demo;


import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;

import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.Jframe;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JTextArea;

public class GameForm extends Jframe{

//定义面板
private JPanel jpl1jpl2;

//给用户筹码
private static int monery = 10000;

//定义界面按钮
private JButton jb1jb2jb3;

//定义输入区域
private JLabel jlb1jlb2jlb3jlb4;

//定义下拉列表
private JComboBox jcb1;
private object list[] = {“100““300““500““1000““3000““5000“};


//定义单选按钮
private JRadioButton jrb1jrb2jrb3jrb4;

//创建按钮组
private ButtonGroup btg;

//定义文本区域
private JTextArea jta;

//定义初始选中的马
private String horseNum = “一号马“;

//定义初始下注的金额
private int xz = 100;



public GameForm (){
super(“赛马测试版v1.1“);

//添加第一个面板   创建子类的一个对象来画图
jpl1 = new JPanel();
//设置布局
jpl1.setLayout(null);

//创建一个画图面板,将面板添加到第一个面板里
jpl2 = new JPanel();
jpl2.setLayout(null);
jpl2.setBounds(00800280);
jpl2.setBackground(Color.white);
jpl1.add(jpl2);



btg = new ButtonGroup();

//创建和添加单选按钮
jrb1 = new JRadioButton(“一号马“);
jrb2 = new JRadioButton(“二号马“);
jrb3 = new JRadioButton(“三号马“);
jrb4 = new JRadioButton(“四号马“);
jrb1.setBounds(18032080 30);
jrb2.setBounds(26032080 30);
jrb3.setBounds(34032080 30);
jrb4.setBounds(41532080 30);
jrb1.setName(“一号马“);
jrb2.setName(“二号马“);
jrb3.setName(“三号马“);
jrb4.setName(“四号马“);

jrb1.setSelected(true);
//将单选按钮放入按钮组里
btg.add(jrb1);
btg.add(jrb2);
btg.add(jrb3);
btg.add(jrb4);

jpl1.add(jrb1);
jpl1.add(jrb2);
jpl1.add(jrb3);
jpl1.add(jrb4);


//添加1号马
final Huatu h1 = new Huatu();
h1.setLayout(null);
h1.setBounds(0080070);
h1.setBackground(Color.white);
h1.setName(jrb1.getName());
jpl2.add(h1);

//添加2号马
final Huatu h2 = new Huatu();
h2.setLayout(null);
h2.setBounds(07080070);
h2.setBackground(Color.white);
h2.setName(jrb2.getName());
jpl2.add(h2);

//添加3号马
final Huatu h3 = new Huatu();
h3.setLayout(null);
h3.setBounds(014080070);
h3.setBackground(Color.white);
h3.setName(jrb3.getName());
jpl2.add(h3);

//添加4号马
final Huatu h4 = new Huatu();
h4.setLayout(null);
h4.setBounds(021080070);
h4.setBackground(Color.white);
h4.setName(jrb4.getName());
jpl2.add(h4);

//创建jlabel并添加到面板上
jlb1 = new JLabel(“请选择下注金额:“);
jlb1.setBounds(0300110 30);
jpl1.add(jlb1);

jlb2 = new JLabel(“请选择下注的马:“);
jlb2.setBounds(180300110 30);
jpl1.add(jlb2);

jlb3 = new JLabel(“赛马结果:“);
jlb3.s

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        301  2013-06-25 09:00  赛马\smGame\.classpath

     文件        382  2013-06-25 09:00  赛马\smGame\.project

     文件       7624  2013-07-01 19:28  赛马\smGame\src\demo\GameForm.java

     文件       2569  2013-07-01 19:29  赛马\smGame\src\demo\Horse.java

     文件      16573  2013-06-28 09:01  赛马\smGame\src\demo\hourse.gif

     文件       1043  2013-06-28 13:54  赛马\smGame\src\demo\Huatu.java

     文件        150  2013-06-28 09:01  赛马\smGame\src\demo\StarGame.java

     文件       2843  2013-07-01 10:28  赛马\smGame\bin\demo\GameForm$1.class

     文件        840  2013-07-01 10:28  赛马\smGame\bin\demo\GameForm$2.class

     文件       1194  2013-07-01 10:28  赛马\smGame\bin\demo\GameForm$3.class

     文件        828  2013-07-01 10:28  赛马\smGame\bin\demo\GameForm$4.class

     文件        828  2013-07-01 10:28  赛马\smGame\bin\demo\GameForm$5.class

     文件        829  2013-07-01 10:28  赛马\smGame\bin\demo\GameForm$6.class

     文件        829  2013-07-01 10:28  赛马\smGame\bin\demo\GameForm$7.class

     文件       1050  2013-07-01 10:28  赛马\smGame\bin\demo\GameForm$8.class

     文件       5980  2013-07-01 10:28  赛马\smGame\bin\demo\GameForm.class

     文件       3034  2013-07-01 10:20  赛马\smGame\bin\demo\Horse.class

     文件      16573  2013-06-28 09:01  赛马\smGame\bin\demo\hourse.gif

     文件       1533  2013-06-28 13:54  赛马\smGame\bin\demo\Huatu.class

     文件        446  2013-06-28 09:01  赛马\smGame\bin\demo\StarGame.class

     文件       1593  2013-06-27 17:17  赛马\smGame\bin\com\sagame2\www\GameForm$1.class

     文件        685  2013-06-27 17:17  赛马\smGame\bin\com\sagame2\www\GameForm$2.class

     文件       4256  2013-06-27 17:17  赛马\smGame\bin\com\sagame2\www\GameForm.class

     文件       1942  2013-06-27 17:19  赛马\smGame\bin\com\sagame2\www\Horse1.class

     文件      16573  2013-06-25 10:20  赛马\smGame\bin\com\sagame2\www\hourse.gif

     文件       1612  2013-06-27 17:05  赛马\smGame\bin\com\sagame2\www\Huatu.class

     文件        479  2013-06-27 16:22  赛马\smGame\bin\com\sagame2\www\StarGame.class

     文件       1430  2013-06-26 17:10  赛马\smGame\bin\com\sagame\www\GameForm$1.class

     文件        680  2013-06-26 17:10  赛马\smGame\bin\com\sagame\www\GameForm$2.class

     文件       3798  2013-06-26 17:10  赛马\smGame\bin\com\sagame\www\GameForm.class

............此处省略23个文件信息

评论

共有 条评论