-
toeplitz方程,预测反褶积必备,主要是方程的解法
toeplitz方程,预测反褶积必备,主要是方程的解法-toeplitz equations, predictive deconvolution essential, mainly equations
- 2022-01-26 04:46:32下载
- 积分:1
-
贪心算法解决分割问题
给定一定的宽度,和N个输入(宽度)
得出最小的宽度...
贪心算法解决分割问题
给定一定的宽度,和N个输入(宽度)
得出最小的宽度-greedy algorithm to solve the segmentation problem must set the width and N input (width) reached the minimum width
- 2022-02-10 13:43:33下载
- 积分:1
-
视觉基本写事件
visual basic写的基于事件驱动的串口通讯控件,大家可以使用-visual basic to write event-driven based on the serial communication control, we can use
- 2022-02-26 08:29:54下载
- 积分:1
-
直接写屏,直接从内存写到屏幕内存,然后刷出来。开发环境为Carbide 1.2 +SDK 2rd...
直接写屏,直接从内存写到屏幕内存,然后刷出来。开发环境为Carbide 1.2 +SDK 2rd-Direct write screen, directly from the memory screen memory writes, and then brush out. Development environment for the Carbide 1.2+ SDK 2rd
- 2022-02-04 01:20:43下载
- 积分:1
-
《Microsoft Windows CE User Interface Services Guide》中文版
《Microsoft Windows CE User Interface Services Guide》中文版-"Microsoft Windows CE User Interface Services Guide," the Chinese version
- 2022-12-20 04:15:04下载
- 积分:1
-
开发于vb的局域网发送消息的小程序,可以自动检测位于局域网的计算机...
开发于vb的局域网发送消息的小程序,可以自动检测位于局域网的计算机-Developed in vb send a message to the local area network applet, you can automatically detect local area network computer is located
- 2022-05-18 19:48:10下载
- 积分:1
-
Management System Status
学籍管理系统开发-Management System Status
- 2022-10-01 00:45:04下载
- 积分:1
-
vc_usb 控制程序
vc6 usb控制程序,使用环境是vc++6,实现usb接口的读操作,写操作,枚举操作,在windows端实现与usb设备的通信,usb设备使用c8051f320芯片
- 2022-03-22 20:03:13下载
- 积分:1
-
弯曲与开发的小日志,希望对大家有用…
一个用flex开发的小小的日志,希望能对大家有用,有一些不足-Flex with the development of a small log, hoping to be useful for all of us, there are a number of shortcomings
- 2022-04-07 02:44:34下载
- 积分:1
-
一个线程池的一个类,基本使用如下:
一个线程驰的类, 下面的是基本的使用方法 struct TSession { SOCKET socket int id } class myIocp:public CIOCP { public: void OnRead(void * p, char * buf, int len) void OnAccept(SOCKET socket) void OnClose(void * p) } void myIocp::OnAccept(SOCKET socket) { TSession *s = new TSession s->socket = socket //这里可以对连接的session进行自己的操作,例如给id找一个唯一的值 SetIoCompletionPort(socket, s) // 使连接socket与一个自定义结构体关联 } void myIocp::OnRead(void * p, char * buf, int len) { TSession *s = (TSession *)p send(s->socket, buf, len, 0) // 这里只是简单的把收到的消息返回给客户端 ... } void myIocp::OnClose(void * p) { delete p } myIoncp iocp main() { ... iocp.listen(4311) // 开始监听网络端口,等待客户端连接 ... }-A class for thread pool,basic usage below:
struct TSession { SOCKET socket int id } class myIocp:public CIOCP
{ public:
void OnRead(void* p, char* buf, int len)
void OnAccept(SOCKET socket)
void OnClose(void* p) }
void myIocp::OnAccept(SOCKET socket)
{ TSession*s = new TSession s->socket = socket
//here you can do something about connecti
- 2022-07-17 05:14:52下载
- 积分:1