CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 多线程程序

搜索资源列表

  1. xiancheng

    0下载:
  2. VC++6.0做的一个创建多线程并设置不同的优先级的小程序-VC++6.0 to do to create a multi-threaded and set the priority of different small procedures
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-24
    • 文件大小:237775
    • 提供者:张飞
  1. FTP

    0下载:
  2. 使用c++builder编写的FTP客户端程序,使用了多线程技术。-Using c++ builder prepared FTP client program, use the multi-threading technology.
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-09
    • 文件大小:1072071
    • 提供者:牛鹏
  1. JAVA+Socketchat

    0下载:
  2. java socket多线程聊天室程序,服务器和客户端之间实现通信-java socket multi-threaded chat rooms, servers and client communications between
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-03-26
    • 文件大小:55242
    • 提供者:王寅生
  1. TCP_server_client

    2下载:
  2. MyEclipse,实现tcp socket连接的客户端和服务器端,能够传输文本或图片,服务器端有多线程和单线程两个,多线程的可以实现同时让多个用户连接,rar包内word文档中有简单的流程图和程序说明,代码较简单,适合初学者。-MyEclipse,tcp socket server and client,there are single thread server and multi thread server,you can get file through the tcp
  3. 所属分类:J2ME

    • 发布日期:2012-11-24
    • 文件大小:115190
    • 提供者:申文霞
  1. Chat

    0下载:
  2. UDP网络聊天程序,实现文字和视频聊天,多线程窗体监听-UDP chat,C sharp.Contains text and Vedio.
  3. 所属分类:CSharp

    • 发布日期:2017-05-09
    • 文件大小:2357735
    • 提供者:薛岩洁
  1. vc_serialport_communication

    0下载:
  2. MSComm 控件在基于单文档中的应用 Win32 API 串口控制 MFC 打包类 Win32串口编程 多线程,多接收模式串口类LsComm 通过串口收发短消息 一个串口通讯数据库存取例子程序-vc serial port communication by much ways
  3. 所属分类:Communication

    • 发布日期:2017-05-19
    • 文件大小:5354543
    • 提供者:liuyuefeng
  1. VC_Thread_Pools

    0下载:
  2. VC++ 6.0下实现的线程池程序。 用户可以在WorkItem下设置要完成的任务,设置好工作函数,即可运行线程池开始多线程工作。-VC++ 6.0 under the procedures for implementation of the thread pool. Users can set up under the WorkItem to achieve the mission, set up good job function, you can start the thread po
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-31
    • 文件大小:123309
    • 提供者:陈大林
  1. Linux_Kernel

    0下载:
  2. Linux中各种内核态程序的编写,这是某个人的编程心得,里面有源代码,内容涉及互斥锁、信号量、多线程等,很不错的,值得参考!-Linux Kernel in a variety of procedures for the preparation of state, this is a personal experience of programming, which source code, which relates to mutual exclusion locks, semaphores,
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:134156
    • 提供者:Jackson
  1. Pool_Thread

    0下载:
  2. 自己写的线程池控制台程序,类似ACE中的线程池的例子,只是多线程的运行更加健壮,不会出现当队列中无消息时,线程池迅速消失的BUG。VC6下通过编译,不依赖任何程序库,适合项目开发。-Write your own thread pool console procedures, similar to ACE in the thread pool example, only the operation of multi-threading more robust, will not appear wh
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:1248313
    • 提供者:陈文捷
  1. scanport

    0下载:
  2. 一个多线程扫描端口程序-A multi-threaded scanning port procedures
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-11-09
    • 文件大小:29323
    • 提供者:站长
  1. multidown

    0下载:
  2. 用来通过HTTP协议下载的程序,支持断点续传和多线程下载--Program which could dowanload files through HTTP protocol,it supports resume at break-point and multi-thread downloading
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-11-09
    • 文件大小:76500
    • 提供者:站长
  1. 端口扫描

    0下载:
  2. 此为一个简单得端口扫描程序,支持多线程,很小但是很实用。--A practical port scanning program. It is simple, small and supports multiple threads.
  3. 所属分类:

    • 发布日期:2017-12-27
    • 文件大小:63437
    • 提供者:阿业
  1. PortScan0623

    0下载:
  2. 一个多线程端口扫描程序,可以开启任意数量的线程,并可随时停止扫描-An multi-threaded port scanning program. It can open any number of threads, and stop scanning at any time.
  3. 所属分类:Scanner

    • 发布日期:2017-11-18
    • 文件大小:35414
    • 提供者:andy
  1. fibnum

    0下载:
  2. 这个程序是一个Win32程序,计算Fibonacci斐波纳契数列(一种整数数列, 其中每数等于前面两数之和)。其定义是f(1) = 1,f(2) = 2,并且当n>2时, f(n) = f(n-1) + f(n-2)。源代码种给出了三种计算方法。第一种方法用递归,第二种方法用大数组,第三种方法用小数组。此外,这个程序还具备多线程特性,所以在运算时可以做其它操作。代码用到了以前创建的Win32类。测试为发现bug和内存溢出。--Calculate Fibonacci value.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-23
    • 文件大小:69823
    • 提供者:杨广铭
  1. cloneqq

    0下载:
  2. 虽然我叫它<仿-OICQ>但实际上应该算是一个聊天室程序,在编写程序时应用到的技术比较多(注:没有多线程技术),但都是比较基础的操作.-Although I call it <imitation-OICQ> but in fact should be considered a chat room procedures, in the preparation of procedures applied to the technology more (Note: There
  3. 所属分类:ICQ-IM-Chat

    • 发布日期:2017-11-25
    • 文件大小:130566
    • 提供者:阿洪
  1. 多线程端口扫描

    0下载:
  2. 多线程端口扫描程序-multithreaded port scanning procedures
  3. 所属分类:

    • 发布日期:2017-11-09
    • 文件大小:38100
    • 提供者:李龙
  1. MutexesDlg

    1下载:
  2. 编写多线程应用程序的最重要问题就是线程之间的资源同步访问。因为多个线程共享资源时如果发生访问冲突通常会产生不正确的结果。本程序主要实现线程间的同步技术-The preparation of multi-threaded applications the most important problem is the thread synchronization between the resources to visit. Because the shared resource when multi
  3. 所属分类:Process-Thread

    • 发布日期:2016-10-25
    • 文件大小:4026
    • 提供者:朱科
  1. multi_test

    0下载:
  2. 程序完成功能是VC++6.0多线程技术在端口扫描程序中的应用。运行环境为WinXP/Win2000,Visual C++ 6.0-Process is complete function is VC 6.0 multi-threading technology in the process of port scanning applications. Runtime environment for WinXP/Win2000, Visual C++ 6.0
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:14392
    • 提供者:tao
  1. 118Http_Auto_update

    0下载:
  2. 通过HTTP协议下载的程序源码,支持断点续传和多线程下载-for download through HTTP protocol procedures source to support HTTP download and multithread -Through the HTTP protocol to download the program source code, support for HTTP and multi-threaded download-for download throu
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-04-03
    • 文件大小:436112
    • 提供者:ccd
  1. LANChat

    0下载:
  2. 毕业设计:VC++局域网聊天程序 本程序利用Socket套接字将主程序分为服务端和客户端两个部分。采用了UDP和TCP/IP相结合,有效提高了数据传输的时效性和稳定性。本程序还用到了多线程编程,用来解决程序自身阻塞的问题。 -Graduation Project: VC++ LAN chat program using this procedure will be the main program is divided into Socket socket server and client
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-27
    • 文件大小:237540
    • 提供者:sdfads
« 1 2 3 4 5 6 78 9 10 11 12 ... 50 »
搜珍网 www.dssz.com