-
ex4tomq4_downyi
说明: ex4反编译工具,2016前的版本都可以用(Ex4 Decompiler Tool, Pre-2016 Version)
- 2020-07-23 21:58:50下载
- 积分:1
-
Tetris
java实现的俄罗斯方块游戏,实现了移动、翻转、变向等基本功能,和适合初级水平的java程序员联系(java implementation of the Tetris game, mobile, flip, change to the basic functions of java programmer suitable for primary level contact
)
- 2012-03-23 15:22:44下载
- 积分:1
-
STM32F10x
里面具有STM32的所有.H文件,可用于demo里面不全,丢失的.H文件,添加到项目目录下即可使用。(It has all the. H files of STM32, which can be used for incomplete and missing. H files in demo, and can be added to the project directory.)
- 2019-04-30 14:09:12下载
- 积分:1
-
LCMV
西电 自适应 大作业 LCMV实现 谢谢谢谢谢(THANKS Xidian 2019 Adaptive signal processing)
- 2019-07-06 17:23:36下载
- 积分:1
-
androidScreenShareAndControl-master
android 屏幕录制demo 支持手机分辨率自调(android screenRecord)
- 2018-01-12 10:43:53下载
- 积分:1
-
运动目标前景提取
对于视频中动态背景下运动前景部分提取,一种基于单高斯模型和混合高斯模型的动态背景模型提取前景信息。(For moving foreground extraction in dynamic background, a dynamic background model based on single Gaussian model and mixed Gaussian model is proposed to extract foreground information.)
- 2018-09-22 17:39:09下载
- 积分:1
-
Cigre_Benchmark
model for High voltage dc transmission system using bipolar system
- 2017-06-04 00:35:55下载
- 积分:1
-
LCD1602Test
AVR单片机 Mega128的LCD1602测试代码(The LCD1602 Mega128 AVR microcontroller test code)
- 2011-08-11 16:48:56下载
- 积分:1
-
C#使用LINQ筛选动态数组中是string类型的元素
C#创建动态数组,筛选指定类型的元素,使用LINQ筛选动态数组中是string类型的元素。核心代码如下:
ArrayList arrList = new ArrayList(); //创建动态数组
arrList.Add(1);//添加动态数组元素
arrList.Add(2);
arrList.Add("A");
arrList.Add(3);
arrList.Add("b");
//使用LINQ筛选动态数组中是string类型的元素
var query = from item in arrList.OfType()
select item;
label1.Text = "是字符串类型的有:";//显示string类型的元素
foreach (var item in query)
{
label1.Text += item + " , ";
}
- 2022-01-24 17:23:38下载
- 积分:1
-
酒店时钟源码
应用背景
定义一个类Clock
属性有hour、minute、second
功能有display(显示时间)、set(设置时间)和tick(走一秒)
为Clock添加静态成员count,并初始化,在测试代码中先后声明两个钟
2、类的组合:定义Time类,定义Clock2,属性为Time型变量time
3、(从1中)派生一个类HotelClock
属性有hour、minute、second、city(注意:属性继承v.s.新增)
功能有display、set和tick(注意:哪些功能需要重写)
测试代码中声明一个长度为3的HotelClock数组,分别存北京、东京(比北京晚1个小时)和纽约时间(比北京早15个小时),并输出。
4、为HotelClock类重载
- 2023-04-03 23:50:04下载
- 积分:1