CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 进程与线程 搜索资源 - 常用

搜索资源列表

  1. xxysbyapplexx

    0下载:
  2. VC++6.0编写的Windows消息演示系统的源代码。 功能: 获取窗口handle 获取edit内容 隐藏窗口 可供学习的地方: 窗口前置 窗口置top capture window flat picture button 常用的message-VC 6.0 of the Windows news demo system's source code. Function : access window handle access
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:145.03kb
    • 提供者:赵杰伊
  1. 实现程序互斥

    0下载:
  2. 常用的线程编程源代码-common thread programming source code
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:23.4kb
    • 提供者:marshal
  1. ThreadTest.rar

    1下载:
  2. 一个实例,介绍如何在VC中调用多线程,本例中也同时实现了常用的排序算法。,An example on how to call the VC multi-threaded, this case also the realization of the sorting algorithm used.
  3. 所属分类:Process-Thread

    • 发布日期:2016-04-05
    • 文件大小:16.85kb
    • 提供者:李洪坛
  1. 33427984

    0下载:
  2. 多线程例子,模拟电梯运行采用了常用的一些,在delphi7下运行测试成功-Multi-threaded example, simulated elevator used to run a number of commonly used in the tests are successfully run under Delphi7
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-17
    • 文件大小:130.92kb
    • 提供者:gu
  1. multithreadingapplicationsinWin32

    0下载:
  2. 该电子书详细介绍WIN32多线程编程的底层原理及常用技巧!-The book details the underlying WIN32 multi-threaded programming principles and common techniques!
  3. 所属分类:Process-Thread

    • 发布日期:2017-06-13
    • 文件大小:19.68mb
    • 提供者:John Smith
  1. Visual-CPP-shiyanbaogaoshu

    0下载:
  2. 图形和文本,菜单、工具栏、状态栏,对话框、Windows常用控件。动态链接库,多线程编程,数据库或多媒体。-Graphics and text, menus, toolbars, status bar, dialog boxes, Windows common controls. Dynamic link library, multi-threaded programming, database or multimedia.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-02
    • 文件大小:515.72kb
    • 提供者:yichunyan
  1. Multi-threaded

    0下载:
  2. 多线程服务器的编程模型,是一本介绍多线程编程的不错书籍。本书详细描述了多线程编程中常用的几种模型。-Multi-threaded server programming model is a good introduction of multi-threaded programming books. This book describes in detail the multi-threaded programming in several popular models.
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:354.27kb
    • 提供者:
  1. dxcbcmx

    0下载:
  2. 主要讲述了常见的多线程服务器的常用编程模型,还是很使用的。-Focuses on a common multi-threaded server programming model commonly used, or is used.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-08
    • 文件大小:352.31kb
    • 提供者:hexiang
  1. Threagkktrdest

    1下载:
  2. 一个介绍如何在Visual C中调用多线程代码,本例中也同时实现了常用的排序算法。完整源代码,已通过测试。-How a call in Visual C multi-threaded code, in this case also commonly used to achieve a sort algorithm. Full source code, has been tested.
  3. 所属分类:Process-Thread

    • 发布日期:2016-04-18
    • 文件大小:17kb
    • 提供者:清醒
  1. cipandiaodusuanfa

    0下载:
  2. 磁盘驱动调度对磁盘的效率有重要影响。磁盘驱动调度算法的好坏直接影响辅助存储器的效率,从而影响计算机系统的整体效率。 常用的磁盘驱动调度算法有:最简单的磁盘驱动调度算法是先入先出(FIFO)法。这种算法的实质是,总是严格按时间顺序对磁盘请求予以处理。算法实现简单、易于理解并且相对公平,不会发生进程饿死现象。但该算法可能会移动的柱面数较多并且会经常更换移动方向,效率有待提高。-Disk drive scheduling efficiency of the disk have a major
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-31
    • 文件大小:10.45kb
    • 提供者:阿门
  1. multihread-server-model

    0下载:
  2. 一份介绍多线程服务器的常用编程模型的文档,pdf格式-this is a pdf file about multithread server model
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-02
    • 文件大小:352.37kb
    • 提供者:chenchangjun
  1. FetchDll

    0下载:
  2. 动态链接库常用于封装一些功能函数,基于VC++编写的动态链接库实例程序-The dynamic link library is commonly used in the package of some functions, based on VC++ to write dynamic link library sample program
  3. 所属分类:Process-Thread

    • 发布日期:2017-11-21
    • 文件大小:192.64kb
    • 提供者:qiujiayong
  1. GoodCount

    0下载:
  2. 3.4.1 使用Win32互锁操作.p.58 这些函数中最常用的是InterlockedIncrement和Interlockedlncrerment。程序清单3-6是GoodCount,它是程序清单3-5中实例BadCourt的一个新版本。GoodCount使用InterlockedIncrement来完成全局变量的自动增一,它在所有的Windows 2000系统上都能正确地运行。 程序清单3-6 GoodCount程序,它展示了共享全局数据的正确方法 -3.4.1 The use
  3. 所属分类:Process-Thread

    • 发布日期:2017-11-14
    • 文件大小:6.3kb
    • 提供者:dirdir
  1. GameDll

    0下载:
  2. C++勾子注入进程与DLL监听被注入进程键盘消息给呼出DLL的窗口程序。也就是个常用的方式,这是源码-C++勾子注入进程与DLL监听被注入进程键盘消息给呼出DLL的窗口程序。也就是个常用的方式,这是源码auxiliary production methods, it is the source
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-31
    • 文件大小:26.46kb
    • 提供者:王力宏
  1. AUSH

    0下载:
  2. 在windows操作系统上,测试排序,常用的排序方法,主要是测试使用,-On the Windows operating system, test sequencing, commonly used sorting method, is primarily to test the use of,
  3. 所属分类:Process-Thread

    • 发布日期:2017-12-18
    • 文件大小:21kb
    • 提供者:cartjmi
  1. the

    0下载:
  2. 这是我学习数据结构所编写的一些二叉树及链表常用操作的一些代码!-This is my learning written some of the binary tree data structure and list some of the common operations code!
  3. 所属分类:Process-Thread

    • 发布日期:2017-12-23
    • 文件大小:5kb
    • 提供者:Pagesf
  1. sknjectflrThis

    0下载:
  2. 数值分析实验题目牛顿迭代法求根 这个也是计算方法中的常用计算程序-The Newton iteration method for root numerical experiment subject This calculation method is commonly used in the calculation process
  3. 所属分类:Process-Thread

    • 发布日期:2017-12-16
    • 文件大小:26kb
    • 提供者:tzken
  1. phlivw

    0下载:
  2. vb编写的代理服务器的编程 我们一般常用的Internet代理服务器是用微软-Vb proxy server programming Our Internet proxy server is usually used with Microsoft
  3. 所属分类:Process-Thread

    • 发布日期:2017-12-17
    • 文件大小:9kb
    • 提供者:cdack
  1. efficianlc-network

    0下载:
  2. 对于网络编程中常用的函数epoll的效率进行了详细的分析-For commonly used functions in the network programming epoll efficiency are analyzed in detail
  3. 所属分类:Process-Thread

    • 发布日期:2017-12-16
    • 文件大小:46kb
    • 提供者:hmidov
  1. alaorithms

    0下载:
  2. C常用算法程序集,徐士良第六章,不错的源码-C algorithms assemblies, Xu Shiliang chapter 6, good source
  3. 所属分类:Process-Thread

    • 发布日期:
    • 文件大小:6kb
    • 提供者:rtrst
« 12 3 »
搜珍网 www.dssz.com