91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡(jiǎn)介

該資源為基于Java的四則運(yùn)算練習(xí)系統(tǒng),用戶可以在該系統(tǒng)進(jìn)行練習(xí),考試,查看錯(cuò)題,和進(jìn)行算法小游戲。練習(xí)和考試可以選擇難度,通過(guò)考試后會(huì)提升自己的能力等級(jí),解鎖更高難度的測(cè)試。練習(xí)和考試中錯(cuò)的題目將記載入錯(cuò)題本,錯(cuò)題本中的題目用戶可以查看和刪除。算法游戲是2048。項(xiàng)目可以直接導(dǎo)入eclipse。且包含了設(shè)計(jì)文檔,直擊課程設(shè)計(jì)!用戶接口為圖形界面(GUI),代碼設(shè)計(jì)模式為MVC設(shè)計(jì)模式。用戶信息和題庫(kù)都是XML格式。

資源截圖

代碼片段和文件信息

package?gui.controller.event;

import?java.awt.event.ActionEvent;
import?java.awt.event.ActionListener;
import?java.util.Stack;

import?javax.swing.JPanel;

import?gui.view.frame.Basicframe;

public?class?BackIconListener?implements?ActionListener
{
private?Basicframe?basicframe;

public?BackIconListener(Basicframe?basicframe)
{
this.basicframe?=?basicframe;
}

@Override
public?void?actionPerformed(ActionEvent?e)
{
Stack?stack?=?basicframe.stack;
if?(stack.size()?>?1)
{
JPanel?popPanel?=?stack.pop();
basicframe.remove(popPanel);
JPanel?top?=?stack.peek();
top.setVisible(true);
basicframe.add(top);
}
}

}

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----

?????文件????3698327??2019-05-10?19:58??Java課程設(shè)計(jì)報(bào)告書(shū).docx

?????文件???????3303??2019-05-10?20:00??arithmetic\.classpath

?????文件????????386??2019-05-10?20:00??arithmetic\.project

?????文件?????????64??2019-05-10?20:00??arithmetic\.settings\org.eclipse.core.resources.prefs

?????文件????????598??2019-05-10?20:00??arithmetic\.settings\org.eclipse.jdt.core.prefs

?????文件???????1222??2019-05-10?20:00??arithmetic\bin\gui\controller\event\BackIconListener.class

?????文件???????4235??2019-05-10?20:00??arithmetic\bin\gui\controller\event\BeforeListener.class

?????文件???????2469??2019-05-10?20:00??arithmetic\bin\gui\controller\event\DeleteWrongTopicListener.class

?????文件???????5312??2019-05-10?20:00??arithmetic\bin\gui\controller\event\GameControl.class

?????文件???????1220??2019-05-10?20:00??arithmetic\bin\gui\controller\event\HomeGameListener.class

?????文件???????1088??2019-05-10?20:00??arithmetic\bin\gui\controller\event\HomePracticeListener.class

?????文件???????1072??2019-05-10?20:00??arithmetic\bin\gui\controller\event\HomeTestListener.class

?????文件???????1081??2019-05-10?20:00??arithmetic\bin\gui\controller\event\HomeWrongListener.class

?????文件???????4238??2019-05-10?20:00??arithmetic\bin\gui\controller\event\NextListener.class

?????文件???????1663??2019-05-10?20:00??arithmetic\bin\gui\controller\event\PracticeListener.class

?????文件????????765??2019-05-10?20:00??arithmetic\bin\gui\controller\event\PracticeSubmitCloseListener.class

?????文件???????3564??2019-05-10?20:00??arithmetic\bin\gui\controller\event\SubmitListener.class

?????文件???????1304??2019-05-10?20:00??arithmetic\bin\gui\controller\event\TestDifficultyListener.class

?????文件???????1635??2019-05-10?20:00??arithmetic\bin\gui\controller\event\TestListener.class

?????文件????????737??2019-05-10?20:00??arithmetic\bin\gui\controller\event\TestSubmitCloseListener.class

?????文件???????1190??2019-05-10?20:00??arithmetic\bin\gui\controller\event\UserIconListener.class

?????文件????????679??2019-05-10?20:00??arithmetic\bin\gui\controller\event\UserPanelListener.class

?????文件???????4140??2019-05-10?20:00??arithmetic\bin\gui\controller\operation\SubmitOperation.class

?????文件???????1945??2019-05-10?20:00??arithmetic\bin\gui\controller\operation\TestOperation.class

?????文件???????3492??2019-05-10?20:00??arithmetic\bin\gui\controller\operation\UserOperation.class

?????文件???????3373??2019-05-10?20:00??arithmetic\bin\gui\controller\operation\WrongTopicOperation.class

?????文件???????1056??2019-05-10?20:00??arithmetic\bin\gui\main\Main.class

?????文件????????468??2019-05-10?20:00??arithmetic\bin\gui\main\UnitTest.class

?????文件???????1974??2019-05-10?20:00??arithmetic\bin\gui\model\dto\PracticeOption.class

?????文件???????8417??2019-05-10?20:00??arithmetic\bin\gui\model\dto\PracticingState.class

............此處省略109個(gè)文件信息

評(píng)論

共有 條評(píng)論