文件名称:连连看游戏源码,很简单,很详细,值得大家研究
文件大小:8KB
文件格式:JAVA
更新时间:2014-03-03 07:00:57
连连看 连连看源码 Java CSDN 搁浅
连连看游戏源码,很简单,很详细,值得大家研究, public class lianliankan implements ActionListener { JFrame mainFrame; // 主面板 Container thisContainer; JPanel centerPanel, southPanel, northPanel; // 子面板 JButton diamondsButton[][] = new JButton[6][5];// 游戏按钮数组 JButton exitButton, resetButton, newlyButton; // 退出,重列,重新开始按钮 JLabel fractionLable = new JLabel("0"); // 分数标签 JButton firstButton, secondButton; // 分别记录两次被选中的按钮 int grid[][] = new int[8][7];// 储存游戏按钮位置 static boolean pressInformation = false; // 判断是否有按钮被选中 …… ……