-
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
-
java实现的ftp客户端及服务端,ftp的基本功能。服务端加入命令控制...
java实现的ftp客户端及服务端,ftp的基本功能。服务端加入命令控制-java achieve the ftp client and the server, ftp"s basic functions. Server to control orders
- 2023-07-06 04:30:03下载
- 积分:1
-
DEPSO_Java
差分粒子群算法实现,人工智能算法,采用Java语言模块化编程,可以自己修改fitness函数、限制函数等(DE Particle algorithm implemented by Java about artificial intellegence)
- 2020-11-03 16:39:52下载
- 积分:1
-
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
-
清华大学 郑莉 java程序设计基础 课程实验
第一二章
清华大学 郑莉 java程序设计基础 课程实验
第一二章-Zheng Li, Tsinghua University basic course java programming experiment first two chapters
- 2022-04-30 05:17:40下载
- 积分:1
-
jQuery EasyUI 1.4.4 版 API 中文版
中文API,下了受益终生,一次一块 日日日i日日(my english is to high hahahaha,)
- 2018-06-26 14:13:56下载
- 积分:1
-
CartStatefulSessionBean
ejb3.0有状态会话bean实现简单购物车(ejb3.0 stateful session bean to achieve a simple shopping cart)
- 2013-04-14 16:03:14下载
- 积分:1
-
android 加班统计与记录 应用源码下载
可以记录每天的加班时间,和统计出加班费。
- 2015-06-19下载
- 积分:1
-
基于Upnp协议的示例程序,这是一个upnp的java实现
基于Upnp协议的示例程序,这是一个upnp的java实现-Upnp protocol based on the sample program, this is a upnp implementation of java
- 2023-04-12 15:30:04下载
- 积分:1
-
本书是一本为Java学习者在基础内容学习结束后进行课程设计时提供参考的指导书,其中选用了应用中最典型、最实用的8个案例。它们之间互相独立,读者可以对每一个案例进...
本书是一本为Java学习者在基础内容学习结束后进行课程设计时提供参考的指导书,其中选用了应用中最典型、最实用的8个案例。它们之间互相独立,读者可以对每一个案例进行上机实验,也可以只选择与自己相关的案例来上机实验。 这些实例各有特色,总体来说分为3种:基本语言和算法、游戏、MIS系统。-the book is a Java-based content in learners after learning curriculum designed to provide an easy reference guide to the book, which will use the most typical application, the most practical eight cases. They are independent of each other, each pair of readers conducted on a case-experimental, and can only choose their own cases related to the experimental plane. Examples of each of these characteristics, in general divided into three types : basic language and algorithms, games, MIS.
- 2022-02-05 10:42:24下载
- 积分:1