-
小游戏五子棋大战
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
-
nodeJS入门程序
nodeJS最简单的入门程序,教你一个实例,用nodeJS实现百度的一个产品统计图,学会nodeJS
- 2023-08-10 09:55:03下载
- 积分:1
-
weka的源代码
Weka的全名是怀卡托智能分析环境(Waikato Environment for Knowledge Analysis),是一款免费的,非商业化(与之对应的是SPSS公司商业数据挖掘产品--Clementine )的,基于JAVA环境下开源的机器学习(machine learning)以及数据挖掘(data minining)软件。它和它的源代码 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-11 11:03:30下载
- 积分:1
-
视频游戏玩家的合作伙伴
这段代码是猜测,从多部影片的视频,当用户在显示视频N多,他可以选择将谁与原来的视频播放合作伙,他的合作伙伴可以通过聊天给他发胶,和他娘家猜测该视频
- 2022-03-24 21:41:57下载
- 积分:1
-
调用活动
使用 MS Access 的博物馆收藏管理。建议 MS Office 安装,因为此项目还利用 MS Word 为将数据合并到模板。Gestiuoc 1.0-Gestiuoc发展 / 前端Gestiuoc 是为教育中心开放源码软件: 在 Java 中使用允许管理一所学校的最重要方面的 JSP 编写的服务器端应用程序: 教师、 学生、 课程、 评价、 学科......
- 2022-03-20 12:33:37下载
- 积分:1
-
数控蛋BOT
简介:CNC Eggbot当我在这里发现了酷eggbot艺术instructables和egg-bot.com我知道我的下一个小工具将是:-D但我不能花200块钱为它的时刻。所以我决定我自己建了!在接下来的步骤我将简略说明原来的蛋机器人的基本设计,并告诉你我构建它的方法。
- 2022-07-06 17:24:35下载
- 积分:1
-
snmp4j初学代码
简单的连接snmp agent 然后get数据
在main函数中
Address targetAddress=GenericAddress.parse("udp:192.168.5.151/161");
TransportMapping transport=new DefaultUdpTransportMapping();
Snmp snmp=new Snmp(transport);
transport.listen();
CommunityTarget target=new CommunityTarget();
target.setCommunity(new OctetString("WinSpread"));
target.setAddress(targetAddress);
target.setRetries(3);
target.setTimeout(5000);
target.setVersion(1);
PDU request=new PDU();
request.setType(PDU.SET);
// request.add(new VariableBinding(new OID("IP-FORWARD-MIB::inetCidrRouteMetric4.ipv4")));
// request.add(new VariableBinding(new OID("IP-MIB::ipAdEntAddr")));
// request.add(new VariableBinding(new OID(".1.3.6.1.2.1.1.3.0")));
//
- 2022-04-07 20:38:13下载
- 积分:1
-
在线保险管理系统
这是一个在线的保险管理系统,用户可以提交,查看、 更新、 删除他的建议。
- 2022-02-06 15:55:59下载
- 积分:1
-
多线程下载器-java初学者适合
应用背景
模拟迅雷,FlashGet等多线程下载软件,快速地从服务器上下载各种文件。其原理是把服务器端的文件分成几个小段,每个小段分开同时进行下载。
关键技术
基于JAVA的多线程下载工具
- 支持HTTP和FTP
- 支持多任务同时下载
- 支持断点续传
- 支持多线程同步
- 2022-01-27 16:21:05下载
- 积分:1
-
Hyperic 监控 OpenNMS系统的插件 源代码
资源描述
资源描述
采用 jsp,gsp groovy, 与 OpenNMS 互操作的插件。
- 2022-03-12 02:26:55下载
- 积分:1