-
一个简单的mid播放器
一个简单的mid播放器-a simple mid player
- 2022-03-13 08:57:15下载
- 积分:1
-
参加多次笔试,居然有几次都考到了冒泡算法,一次是C#版的填空,一次是javascript版的全部写出。虽然每次都凭着我对冒泡法的理解给弄出来的,但是多多少少与标...
参加多次笔试,居然有几次都考到了冒泡算法,一次是C#版的填空,一次是javascript版的全部写出。虽然每次都凭着我对冒泡法的理解给弄出来的,但是多多少少与标准模式有点差别,在网上搜了一下关于C#版的冒泡算法,居然也没有一个象样的,自己对照算法模式认真写了一个C#版的,已经测试成功-Surprisingly, there are several bubbling to the test algorithm, is a C# version of the Union, is a javascript version of the full write. Although I always relying on the Bubble Act of possibly understand, but something to do with the standard a little difference in the Internet search for a moment on the C# version of the Bubble algorithm, it would be not a decent, their control algorithm model seriously wrote a version of the C#, has been tested successfully
- 2023-07-05 23:05:04下载
- 积分:1
-
蔷薇系统优化工具,进程,系统服务,窗口,启动管理等功能....
蔷薇系统优化工具,进程,系统服务,窗口,启动管理等功能.-Rosa system optimization tools, processes, system services, windows, boot management.
- 2022-08-07 05:43:27下载
- 积分:1
-
ug of the second development program, everyone can support. Hope to have inspire...
ug的二次开发程序,请大家多多支持。希望对大家的开发有启发。-ug of the second development program, everyone can support. Hope to have inspired the development of everyone.
- 2022-12-26 16:10:03下载
- 积分:1
-
Used by other web access to your own address using the machine!
用来利用其他网站获取你自己使用机器的地址!-Used by other web access to your own address using the machine!
- 2023-04-14 17:25:04下载
- 积分:1
-
access to the file can look at the code
获取文件信息的代码可以-access to the file can look at the code
- 2022-01-22 02:07:09下载
- 积分:1
-
dll formula (2) can change their own
dll程式(二) 可以自己修改-dll formula (2) can change their own
- 2022-05-19 12:26:50下载
- 积分:1
-
一种数字媒体设备应用框架
An application framework for digital media devices
- 2022-06-19 20:12:31下载
- 积分:1
-
这本书描述了微软的Silverlight技术。
this book describe Silverlight technic of microsoft.
- 2022-02-26 15:32:59下载
- 积分: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