-
JAVA贪吃蛇
import java.awt.*;
import javax.swing.*;
@SuppressWarnings("serial")
public class MainClass extends JFrame {
ControlSnake control;
Toolkit kit;
Dimension dimen;
public static void main(String[] args) {
new MainClass("my snake");
}
public MainClass(String s) {
super(s);
control = new ControlSnake();
control.setFocusable(true);
kit = Toolkit.getDefaultToolkit();
dimen = kit.getScreenSize();
add(control);
setLayout(new BorderLayout());
setLocation(dimen.width / 3, dimen.height / 3);// dimen.width/3,dimen.height/3
setSize(FWIDTH, FHEIGHT);
setDefaultCloseOperation(JFrame.EXIT_ON_CLO
- 2022-04-17 23:49:25下载
- 积分:1
-
ApiMethod
Representation of a method in the API with parameters (arguments) and a return value for Andriod.
- 2013-10-16 13:58:04下载
- 积分:1
-
CPU Scheduling
这是一个用java进行CPU调度的超级酷GUI。它有先到先服务、优先权、非抢占式最短工作优先、抢占式最短工作优先和循环制
- 2022-01-26 06:32:53下载
- 积分:1
-
Flower
用jsp+javabean+oracle实现的鲜花购物网站(Using jsp+ javabean+ oracle flower shopping site to achieve)
- 2010-03-06 01:30:39下载
- 积分:1
-
广播接收器-android 系统示例
附加的示例是制造的 eclipse 编程语言。
您可以在附加的 android 应用程序中接收 sms。
- 2023-03-16 20:55:04下载
- 积分:1
-
GL
This interface specifies the methods for a visitor of Constant objects.
- 2014-01-22 11:41:06下载
- 积分:1
-
834269
用UDP协议进行传输,并模拟rdt协议,以实现可靠数据传输()
- 2018-02-11 17:47:34下载
- 积分:1
-
TheMITPressConceptsTechniquesandModelsofComputerPr
一本非常好的计算机概念,技术和编程模型的原版书籍。(This innovative text presents computer programming as a unified discipline in a way that is both practical and scientifically sound. The book focuses on techniques of lasting value and explains them precisely in terms of a simple abstract machine. The book presents all major programming paradigms in a uniform framework that shows their deep relationships and how and where to use them together.
After an introduction to programming concepts, the book presents both well-known and lesser-known computation models ("programming paradigms"). Each model has its own set of techniques and each is included on the basis of its usefulness in practice. The general models include declarative programming, declarative concurrency, message-passing concurrency, explicit state, object-oriented programming, shared-state concurrency, and relational programming. Specialized models include graphical user interface programming, distributed programming, and constraint programming. Each model is based on its)
- 2009-12-07 22:17:44下载
- 积分:1
-
A126560-WUXUNBO
实现一个10乘10的表格 内部随即获得两个弧度 JAVA2D 图形绘制(Achieve a 10 by 10 inside the table then get two arc JAVA2D Rendering)
- 2011-11-25 16:40:19下载
- 积分:1
-
android自定义的HeartLayout控件
一个自定义控件HeartLayout,该控件效果类似某些直播app中点赞控件。使用该控件可以在你的界面上添加一排向上冒爱心的点赞控件。
- 2022-07-03 19:39:28下载
- 积分:1