-
67120119
说明: 本人写的wap网站程序,希望给大家带来学习的好处,不错(I wrote the wap website program, hoping to bring you the benefits of learning, good)
- 2019-05-20 06:49:24下载
- 积分:1
-
MFC简易计算器(VS2013)
使用VS2013编辑了简易计算器,能够实现简单四则运算等,主要用于面向对象高级编程初学者借鉴使用,主要平台为VS2013,MFC,编程语言为C++。
- 2022-02-28 21:36:54下载
- 积分:1
-
C04b_msgQ
vvxworks下消息队列的实现,Tornado/Vxworks书上的源码。(Vxworks under the implement of message queue is a Tornado/failure, the source of the book.
)
- 2013-10-27 16:52:56下载
- 积分:1
-
snoc017
ti公司电弧检测板原理图及使用说明,主要利用时频域特征检测电弧(TI company arc detection board schematic and instructions for use)
- 2016-08-01 15:12:39下载
- 积分:1
-
MyBitMapCompress
说明: 一个简单的32位位图压缩算法,基本思想是,扫描像素点,后面有雷同的就记下重复次数。(A simple 32-bit bitmap compression algorithm, the basic idea is to scan pixel, behind identical repetitions on the record.)
- 2010-04-13 22:43:43下载
- 积分:1
-
barsky
OpenGl中的二维裁剪算法,实现直线段相对于给定窗口的裁减,主要采用梁友栋-barsky算法,(OpenGl the two-dimensional cutting algorithm, and of the linear phase for a given window of the reduction, used mainly friends of Liang Dong-barsky algorithm,)
- 2006-12-05 22:49:46下载
- 积分:1
-
带CheckBox列头的DataGridView 支持全选 反选功能 例子完整源码下载
使用方法: 初始化这个列表头 DatagridViewCheckBoxHeaderCell cbHeader = new DatagridViewCheckBoxHeaderCell(); cbHeader.Value = ""; SelectUin.HeaderCell = cbHeader; cbHeader.OnCheckBoxClicked = new CheckBoxClickedHandler(cbHeader_OnCheckBoxClicked); 填写你的全选的业务逻辑 void cbHeader_OnCheckBoxClicked(bool Status) { for (int i = 0; i < this.dataGridView1.Rows.Count; i ) { dataGridView1.Rows[i].Cells["SelectUin"].Value = Status; } }
- 2013-09-19下载
- 积分:1
-
遗传算法——理论、应用与软件实现
说明: 介绍遗传算法的书,详细介绍了遗传算法的背景,数学基础以及各种应用,书中附录有许多遗传算法的源程序。(This paper introduces the book of genetic algorithm, and introduces the background, mathematical basis and various applications of genetic algorithm in detail. There are many source programs of genetic algorithm in the appendix of the book)
- 2020-06-19 21:20:02下载
- 积分:1
-
PC104api_pd_d
mvb接口函数说明 接口函数说明与使用方法(Mvb interface function description Interface function description and usage)
- 2018-03-16 08:56:22下载
- 积分:1
-
boost shared_mutex
共享资源库.今天介绍的共享互斥量用来实现缓冲区读写模型,与生产者/消费者模型不同的地方是,消费者消费产品后,被消费的产品就不存在了,所以消费者线程也要互斥运行;而缓冲区读取线程读取数据后不删除数据,多个线程可以并行读取。这时使用条件变量也不合适了,就要使用共享互斥变量了。 共享互斥量,顾名思义,既共享,也互斥,读线程之间共享读取数据,使用shared_lock类锁定shared_mutex变量;写线程之间需要独占缓冲区,必须互斥运行,使用unique_lock类锁定shared_mutex变量
- 2022-03-25 08:46:51下载
- 积分:1