登录
首页 » Process-Thread » 线程类,适合C++编程,能够直接引起进行线程的创建等使用,非常清楚,很好用。...

线程类,适合C++编程,能够直接引起进行线程的创建等使用,非常清楚,很好用。...

于 2022-03-24 发布 文件大小:2.60 kB
0 39
下载积分: 2 下载次数: 1

代码说明:

线程类,适合C++编程,能够直接引起进行线程的创建等使用,非常清楚,很好用。-Thread class, suitable for C++ programming, can directly lead to thread creation, use, very clear, very good use.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 执行并等待一个程序结束,并通知父进程的程序
    执行并等待一个程序结束,并通知父进程的程序- Carries out and waited for a procedure ended, and informs the father advancement the procedure
    2022-03-16 11:18:11下载
    积分:1
  • 使用 STL 做的windows 下的线程池,半同步/半异步模型,当线程没有使用时被suspend。...
    使用 STL 做的windows 下的线程池,半同步/半异步模型,当线程没有使用时被suspend。-STL use under windows to do the thread pool, semi-synchronous/semi-asynchronous model, when the thread was not using suspend.
    2022-02-02 01:37:18下载
    积分:1
  • the NT environment hidden process, the user is unaware of the conditions, the im...
    在NT环境下隐藏进程,也就是说在用户不知情的条件下,执行自己的代码的方法有很多种,比如说使用注 册表插入DLL,使用Windows挂钩等等。其中比较有代表性的是Jeffrey Richer在《Windows核心编程》中 介绍的LoadLibrary方法和罗云彬在《Windows环境下32位汇编语言程序设计》中介绍的方法。两种方法的 共同特点是:都采用远程线程,让自己的代码作为宿主进程的线程在宿主进程的地址空间中执行,从而达 到隐藏的目的。相比较而言,Richer的方法由于可以使用c/c++等高级语言完成,理解和实现都比较容易 ,但他让宿主进程使用LoadLibrary来装入新的DLL,所以难免留下蛛丝马迹,隐藏效果并不十分完美。罗 云彬的方法在隐藏效果上绝对一流,不过,由于他使用的是汇编语言,实现起来比较难(起码我写不了汇 编程序:))。笔者下面介绍的方法可以说是对上述两种方法的综合:采用c/c++编码,实现完全隐藏。并 且,笔者的方法极大的简化了远程线程代码的编写,使其编写难度与普通程序基本一致。-the NT environment hidden process, the user is unaware of the conditions, the implementation of their code There are various ways, for instance, the use of the registry into DLL, etc. linked to the use of Windows. The more representative Jeffrey Richer is the "core Windows programming" introduced by the LoadLibrary method and the Luo Bin, "under Windows 32 assembly language programming" introduced by the method. Two methods are common features are : remote threads are used to keep the code as host process threads in t
    2022-03-23 05:27:10下载
    积分:1
  • 如果用CWinThread好一点,直接是一个线程对象,如果用AfxBeginThread,实现了这个类,来所简化多线程的创建和关闭的操作。...
    如果用CWinThread好一点,直接是一个线程对象,如果用AfxBeginThread,实现了这个类,来所简化多线程的创建和关闭的操作。-If CWinThread better direct object is a thread, if AfxBeginThread, realize this category, to simplify the creation of multi-threading on and off operation.
    2023-03-28 20:45:04下载
    积分:1
  • 进程调度算法
    进程调度算法--动态优先权抢占式和时间片轮转算法的调度。-process scheduling algorithm-- Dynamic Preemptive priority and time-scheduling algorithm postings.
    2022-02-16 09:49:48下载
    积分:1
  • 本代码穷举系统进程,然后可以杀死进程,用到了 CreateToolhelp32Snapshot 和一些排序操作,
    本代码穷举系统进程,然后可以杀死进程,用到了 CreateToolhelp32Snapshot 和一些排序操作,-Exhaustive system process the code, and then kill the process, use the CreateToolhelp32Snapshot and some sort operation,
    2022-07-04 09:17:57下载
    积分:1
  • ojective C for Iphone example code.
    ojective C for Iphone example code.iphone 开发代码.-ojective C for Iphone example code.
    2023-04-03 01:30:03下载
    积分:1
  • series of multi
    多线程编程系列。一个线程池实现的实例代码。很好。-series of multi-threaded programming. A thread pool to achieve the example code. Very good.
    2022-07-17 00:04:04下载
    积分:1
  • 1 程序开发步骤 (1) 打开vc,选择菜单项file
    1 程序开发步骤 (1) 打开vc,选择菜单项file->new,选择projects选项卡并建立一个名为"process"的win32 console applicatoin工程;创建时注意指定创建该工程的目录; (2) 在工程中创建源文件"process.cpp":选择菜单项project->add to project->files,在选择框中输入自己想要创建的文件名,这里是"process.cpp";接下来询问是否创建新文件时回答"yes";然后通过Workspace->FileView->Source Files打开该文件(同上一试验); (3) 通过调用菜单命令项build->build all进行编译连接,可以在指定的工程目录下得到debug->process.exe程序;再把给定的launchset.txt文件存入该debug目录下,就可以在控制台下进入该目录以launchset.txt为参数运行程序,命令行为:process launchset.txt;要强调的是,在launchset.txt中指定的应用程序路径要正确,否则建立新的进程时会出错,这时需要对照系统的实际情况改动所给的参数文件。 2 补充说明 这里仅仅给出了编译结果和源程序,没有所创建工程的其他文件。-a program development steps (a) to open vc, select menu item file-gt; New, tab to choose projects and the establishment of a "process" of win32 console applicatoin works; Attention to create designated to create the directory of the project; (2) establish a project document "process.cpp" : Select menu item project-gt; add to project-gt; files, the choice of their own box to create the file name,
    2022-07-19 11:28:10下载
    积分:1
  • Windows核心编程代码没有使用MFC,WIN32和DDK开发完全…
    windows核心编程的代码,没有用MFC,完全采用WIN32和DDK开发,在WIN2000下运行.统计进程的状态和堆栈.-windows core programming code without using MFC, completely WIN32 and DDK Development, running in Windows 2000. Statistical process and the state stack.
    2022-04-09 06:51:52下载
    积分:1
  • 696518资源总数
  • 104353会员总数
  • 66今日下载