-
Producer and Consumer Problem
This code implements the function of classic producer and consumer problem in operation system, using java. Shared Memory idea is displayed in the process, it can be used as reference to design memory sharing algorithm.
- 2023-02-10 16:25:03下载
- 积分:1
-
JAVA CODE OF OFFLINE TEST FOR IIT-JEE
在这个项目中,为IIT-JEE入学考试生成了一个离线测试。它可以用在辅导班上。他们可以提供CD给学生,这样学生可以轻松地进行考试。它是用java编写的。但它不需要任何JRE环境,因为环境是包中固有的;
- 2022-03-16 22:09:16下载
- 积分:1
-
JAVA线程池整合
Spring与ActiveMQ线程池整合的一个实例,lib中包含:
apache-activemq-4.1.1.jar
backport-util-concurrent-2.1.jar
commons-lang-2.0.jar
commons-logging-1.0.4.jar
geronimo-j2ee-management_1.0_spec-1.0.jar
log4j-1.2.14.jar
spring-2.0.jar
xbean-spring-2.8.jar
- 2022-06-14 16:55:35下载
- 积分:1
-
电力规约IEC608705/DNP3 Java源码
本人从luciol官网下载的一套集成一系列电力规约IEC608705、DNP3协议的java源码框架,而用java编写电力规约本身就很少见,能在网
上找到这套代码实属不易。这套框架已经满足大部分需求,代码精简、易懂,对象关系设计合理,各种规约分类明确,只有IEC104规约没有完善,不过可以参
考IEC101规约源码及设计思路,本人已经做过测试,工具类灵活、可扩展性强,虽然不能直接商用,但确实参考性极强
- 2022-03-17 22:55:06下载
- 积分:1
-
java基础经典案例源码(自己写的)
自己无聊写的一些简单Java基础学习源码,适合新手学习和使用,有求最大公约数,最小公倍数,找零等小程序
- 2022-03-21 12:52:51下载
- 积分:1
-
弹球等游戏,我需要这个项目
更多的信息。写这篇文章的代码后我将发送必要的代码,
- 2022-05-14 07:15:27下载
- 积分:1
-
socket上报位置
应用背景根据T808协议上传位置信息,道路运输车辆卫星定位系统北斗兼容车载终端和平台之间的通信。根据相关条件确定周期汇报的间隔的规则。终端向平台发送消息告知其安装在某一车辆上。关键技术协议采用的通信方式应符合JT/T 794 中的相关规定,通信协议采用TCP 或UDP,平台
作为服务器端,终端作为客户端。当数据通信链路异常时,终端可以采用SMS 消息方式进
行通信
- 2023-04-21 15:35:05下载
- 积分:1
-
小游戏五子棋大战
class LNode{
private int row;
private int col;
private Color chessColor;
private LNode next;
public LNode(int row,int col,Color chessColor){
this.row=row;
this.col=col;
this.chessColor=chessColor;
}
public LNode(){
this.next=null;
}
public void setRow(int row){
this.row=row;
}
public int getRow(){
return this.row;
}
public void setCol(int col){
this.col=col;
}
public int getCol(){
return this.col;
}
public void setChessColor(Color chessColor){
this.chessColor=chessColor;
}
public Color getChessColor(){
return this.chessColor;
}
public void setNext(LNode next){
this.next=next;
}
public LNode getNext(){
return this.next;
}
}
class NullAndCount{
private int nullCount=0;
private int chessCount=0;
public void setNullCount(int nullCount){
this.nullCount=nullCount;
}
public int getNullCount(){
return this.nullCount;
}
public void setChessCoun
- 2022-05-08 02:47:07下载
- 积分:1
-
模仿微信布局
- 2022-05-07 07:00:30下载
- 积分:1
-
拼音操作处理
拼音操作工具类,包括(将字符串转换成拼音数组,将字符串转换成拼音数组,将单个字符转换成拼音,将汉字转换成拼音等 )
- 2023-05-18 07:45:02下载
- 积分:1