资源简介

java实现的水果忍者游戏。通过拖动鼠标切水果得分 有登录注册功能,排行榜。

资源截图

代码片段和文件信息

package com.langsin.cutfruit;

import java.awt.Dimension;
import java.awt.Font;
import java.awt.HeadlessException;
import java.awt.Toolkit;
import java.util.Random;

import javax.swing.Jframe;

public class BasicJframe extends Jframe{
protected int width;
protected int height;
protected Random ran = new Random();
protected Font font = new Font(“楷体“ Font.BOLD 20);

public BasicJframe(int width int heightString title) {
this.width = width;
this.height = height;
this.settitle(title);
}

/**
 * 初始化当前容器
 */
public void init() {
Toolkit tool = Toolkit.getDefaultToolkit();//AWT中默认获取的工具
Dimension screenSize = tool.getScreenSize();
double screenwidth = screenSize.getWidth();
double screenheight = screenSize.getHeight();
this.setBounds((int)(screenwidth-width)/2 (int)(screenheight-height)/2 width height);
this.setDefaultCloseOperation(Jframe.EXIT_ON_CLOSE);
}




}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         351  2018-12-19 19:23  cutfruit\.classpath
     文件         384  2018-12-09 17:53  cutfruit\.project
     目录           0  2018-12-09 17:53  cutfruit\.settings\
     文件         598  2018-12-09 17:53  cutfruit\.settings\org.eclipse.jdt.core.prefs
     目录           0  2019-01-10 21:17  cutfruit\bin\
     目录           0  2019-01-10 21:17  cutfruit\bin\com\
     目录           0  2019-01-10 21:17  cutfruit\bin\com\langsin\
     目录           0  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\
     文件        1295  2019-01-10 21:17  cutfruit\bin\com\langsin\cutfruit\BasicJframe.class
     文件        1240  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Endframe$1.class
     文件        1701  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Endframe$EndPanel.class
     文件        2228  2019-01-10 21:17  cutfruit\bin\com\langsin\cutfruit\Endframe.class
     文件         606  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\FruitHelper.class
     文件         873  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\FruitMouseListener.class
     文件        1186  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Gameframe$1.class
     文件        2136  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Gameframe$AppleMove.class
     文件        2112  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Gameframe$BananaMove.class
     文件        2111  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Gameframe$BoomMove.class
     文件        4880  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Gameframe$GamePanel.class
     文件        2105  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Gameframe$MangoMove.class
     文件        2140  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Gameframe$StrawberryMove.class
     文件        2140  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Gameframe$Watermelonmove.class
     文件        8338  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Gameframe.class
     文件        1277  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Homeframe$1.class
     文件        1313  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Homeframe$2.class
     文件         930  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Homeframe$3.class
     文件        1259  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Homeframe$homeCutThread.class
     文件        1225  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Homeframe$HomePanel.class
     文件        6462  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Homeframe.class
     文件         817  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Loginframe$1.class
     文件        1627  2019-01-10 21:18  cutfruit\bin\com\langsin\cutfruit\Loginframe$2.class
............此处省略94个文件信息

评论

共有 条评论