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

搜索资源列表

  1. CalcTest_liu

    0下载:
  2. 线程安全的单例,内包含用法,double check 实现!vs2012
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-23
    • 文件大小:6681963
    • 提供者:刘炳奎
  1. paixudonghua

    0下载:
  2. 为选择排序,插入排序,冒泡排序编写的一个动画,采用了多线程编程-For selection sort, insertion sort, bubble sort written an animation applet, using a multi-threaded programming
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1777
    • 提供者:lingfei
  1. VB--multithreaded

    0下载:
  2. VB实现安全的多线程控制台VB realizing safe multithreaded console-VB realizing safe multithreaded console
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-27
    • 文件大小:18369
    • 提供者:yifan
  1. hello-jni

    0下载:
  2. java和c/c++相互调用实例,包括静态和动态生成c/c++源码,和c/c++数组,线程,对象的使用。-Java and c/c++ call each other examples, including static and dynamic generation of c/c++ source code, and the c/c++ array, the thread, the use of objects.
  3. 所属分类:Other systems

    • 发布日期:2017-04-28
    • 文件大小:167695
    • 提供者:wuyongjiang
  1. multhread

    0下载:
  2. 多线程实现账户存取款功能,并考虑线程间同步-multithread to implement withdraw and deposit
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:8794
    • 提供者:jones
  1. jinc

    0下载:
  2. 这是关于java中进程和线程的相关代码源文件,大家可以试着下载下来学习或查阅,个人认为这是java开发中特别重要的部分-This is about the process and thread in java source code files related, we can try to download or access to learning, java personally think this is a particularly important part of the devel
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:30500
    • 提供者:Jason
  1. CSIM-Control

    0下载:
  2. 通过多线程机制进行串口通信,控制擎翔系列电机(CSIM),封装了擎翔电机相关的几乎大部分操作,可用于调机或者学习-Serial communication through the multi thread mechanism, control Qing Xiang series motor (CSIM), encapsulates o-gns motor related nearly most of the operation, can be used for adjusting machine
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-09
    • 文件大小:1990512
    • 提供者:寸芒
  1. cardata

    0下载:
  2. 汽车之家的杂文、评测等相关文章的内容的爬取,单线程可以改造成多线程-Crawling content qichezhijia of essays, reviews, and other related articles and can be transformed into a single-threaded multi-threaded
  3. 所属分类:Other systems

    • 发布日期:2017-04-28
    • 文件大小:8173
    • 提供者:张备
  1. Aohj

    0下载:
  2. Java 多线程 快速排序 1亿数据 3.5秒 写了个Fork/Join的,但好像并没有更快。-Java multi-threaded data quickly sort 100,000,000 3.5 seconds to write a Fork/Join, but does not seem to be faster.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1972
    • 提供者:童伟
  1. epoll

    0下载:
  2. socket编程, epoll监听上千文件描述符, 线程池处理任务队列-socket epoll threadpoll
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:10384
    • 提供者:蔡伟青
  1. MultithreadingRelated

    0下载:
  2. 多线程代码 经典线程同步互斥问题 生产者消费者问题 -Multithreading Related
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:16420
    • 提供者:莫汉斌
  1. test2

    0下载:
  2. 用户界面线程示例: 在这个例子中我们要学会如何创建一个可以单独执行的功能,且可以和应用程序同时运行的线程,而且该线程需要自己的用户界面,也就是说用户的操作和你程序的运算不会有干扰。例如在文档应用程序中的查询和替换功能。在这个例子中我们需要使用框架中的AfxBegin Thread()函数来创建用户界面线程。这将对线程具有完全控制权,我们将创建自己的CWinThread派生线程类。 -User interface thread example:     &
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:712
    • 提供者:衣谷
  1. test4

    0下载:
  2. 大家知道在VC++中我们可以用CreateThread创建一个线程,该函数返回这线程的Handle,以后我们就可以用这个Handle来管理这个线程的。于是我们可以做一个类名为ThreadManager,来管理这些Handle,并随时监控这些线程的状态。 总的思想就是这样,不过为了方便使用,我们最好把这个类封装成DLL的形式,这样以后我们在任何程序中都可以很方便的用该类来管理线程了(当然如果你有兴趣,也可以用COM模型来实现)。 -We all know that in VC++, we
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1520
    • 提供者:衣谷
  1. test5

    0下载:
  2. 我们在开发是经常需要在启动一个进程之后等待其结束后再继续运行。 在这里提供了一个名为Wait的函数,它会为你完成上面的功能。实现的思想是在启动进程后等待其结束,由于进程是一种资源,而资源的句柄在WIN32中可以作为核心量使用。你可以使用WaitForSingleObject等待核心量状态改变为有信号状态。对进程来讲当进程结束时其状态转变为有信号。 在本例中使用了一个单独的线程来启动进程并等待结束。 -We often need to develop a process t
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:780
    • 提供者:衣谷
  1. CalPItoSimultFilCrtSav

    0下载:
  2. 通过调节圆周率小数点后的位数,模拟估计计算一个程序、线程运行所需要的时间。当因需要加快运行速度而更新升级硬件机器, 在测试估计新机器环境下的计算时间时非常好用,代码计算时间精确到毫秒 -get cost time of the routinue,use to emulator(instead) another routinue run time in new machine for Confidentiality.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1448
    • 提供者:wxy
  1. zkliblog

    0下载:
  2. win32 调试日志库,支持多线程,支持控制台、文本、debugview三种日志形式,默认开启崩溃转储。-Win32 debug log library, supports multi threading, support console, text, DebugView three log form, the default open the dump dump.
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-03
    • 文件大小:572434
    • 提供者:scar
  1. FTP

    0下载:
  2. 基于Socket 阻塞模式的多线程FTP客户端 (控制台界面)+ FTP客户端(有界面) -FTP socket
  3. 所属分类:Other windows programs

    • 发布日期:2017-06-14
    • 文件大小:22131712
    • 提供者:name
  1. FindFile

    0下载:
  2. 用c++程序解决寻找文件问题的过程,包含线程的思想-Solving using c++ program looks for file problems, including ideological thread
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-14
    • 文件大小:3372771
    • 提供者:郭昊
  1. GenRandomFileTool

    0下载:
  2. 通过设置生成文件大小及文件数量,实现文件多线程批量快速生成,便于对临时生成文件的二次利用-By setting the size and number of files generated files, file multithreaded batch quickly generate, facilitate the secondary use of temporary generated files
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-16
    • 文件大小:3840657
    • 提供者:cuiqiang
  1. Demo_Java

    0下载:
  2. 用java实现的多线程的demo示例,用于学习java和多线程-Java implementation of multi-threaded demo sample, for learning Java and multi thread
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:16012
    • 提供者:h
« 1 2 ... 17 18 19 20 21 2223 24 25 26 27 ... 34 »
搜珍网 www.dssz.com