搜索资源列表
czxt_1
- 基于dos的多任务系统的实现 通过对线程的创建和撤销,cpu的调度,同步机制,通信机制的实现.-based multi-tasking system of the threads through the creation and withdrawn, cpu scheduling, synchronization mechanisms, communication mechanisms to achieve.
Threading
- 此示例演示下面的线程处理技术。有关更多信息,请参见线程处理创建、启动和终止线程使用线程池线程同步和互交-This example demonstrated the following thread processing technology. For more information, please see threads creation, initiation and termination of the use of threads thread pool thread synchroni
mp3toexe
- 如何在运行过程中编译 C#代码 如何使用C#播放mp3文件 如何把一个文件作为一个嵌入的资源放在你的应用程序中,如何在运行时,动态地提取出已嵌入的资源。 如何实现从资源管理器中拖拽文件到你的应用程序中。 如何通过设计器把一个文件作为嵌入资源插入你的应用程序中。 首先,用户选择一个希望转换成应用程序的mp3文件,于是,一个CompilerParameters的实例会被创建,通过CompilerParameters类中的EmbeddedResources属性将选中的mp3文件添加
2009103015231441894
- 10个VC++多线程操作实例源代码,内容涉及如何安全终止线程、如何创建UI线程、如何创建Worker线程、如何等待线程结束、如何挂起和恢复线程、如何获得线程的退出码、如何使用互斥量、如何使用临界区、如何使用信号量等内容,入门者更应该看一看,多线程的使用很广泛,可以提高程序效率。 -10 VC++ source code examples of multi-threaded operation, which relates to the safe termination of the thre
ThreadSync2
- 该程序为演示程序,同步线程的创建和使用,初学C#编程可以借鉴。-The program for the demonstration program, simultaneous threads to create and use, beginners can learn C# programming.
Thisisafileincludingthecodeofc-charp
- c#进程的创建与结束实例,您可以掌握c#中关于进程与线程操作的实例-This is a file including the code of c#
ConsoleApplication1
- 【C#多线程】 动态创建多个线程后 需要关闭其中某个线程的解决实例。-】 【C# multi-threaded dynamic creation of multiple threads need to close them after the settlement of a thread instance.
ScanComputer
- 创建一个Windows应用程序,使用多线程来扫描一个网段内的计算机,根据计算机的IP地址获取其Dns域名,若计算机不在线,则返回提示信息。 1)对用户选择IP地址范围进行验证,若不是合法的IP地址,给出相应的提示信息。 (2)执行扫描操作时,创建一个线程去扫描一个IP地址。 (3)把每个IP地址对应的Dns信息添加到listBoxStatus中。例如采用“IP地址---Dns域名”形式。 -Create a Windows application that uses multip
Csharp-duoxiancheng
- C# 创建带参数的多线程程序 -C# to create a multi-threaded program
UseMonitor
- 一个适合初学者参考学习的C#多线程监视器程序,创建3个线程,模拟多线程运行,并绑定TestRun方法,定义线程的绑定方法,在同步对象上获取排他锁,模拟做一些耗时的工作。-A suitable reference for beginners to learn C# multi-threaded monitor the program to create three threads to simulate multiple threads running, and bind the TestRun
Transplant
- 利用C#将SQLServer数据库迁移到Oracle数据库方法探索,初步实现了读取Schema,表创建的程序,应用的多线程技术.-C# SQL Server database migration to Oracle database method to explore the initial read Schema, table creation program, the application of multi-threading technology.
CSharp
- 适用于C#初学者的几个小程序,可以加深对这门语言的理解 包括有以下内容: 1.C#获取当前程序所在的文件夹.rar 2.C#界面皮肤(带例子).rar 3.C#如何使用托盘控件的实例源码.rar 4.C#文本加密解密算法示例源代码.rar 5.C#在开机时自动启动程序.rar 6.C#自定义皮肤.rar 7.CS聊天程序.rar 8.WPF模拟Windows+7气象源码.rar 9.玻璃按钮.rar 10.导出Excel格式.rar 11.导出ex
CSharpexe-lpk
- 总体下来,能查杀exe文件夹病毒文件,但无法清除它在c:\F10S 目录下的 ctfmon.exe 与 svchost.exe 和它生成的启动组的快捷方式。 由于条件的限制,我也乏天回术。它将自己的句柄写入到 系统关键的进程 winlogon 中。 源码中有个UnLocker的类、本来想清掉它的句柄删除文件,但是发生个很无奈的 0xC0000005(STATUS_ACCESS_VIOLATION)错误。最后我很无耻的放弃了。 另外 附加 LPK查杀。基本上它创建的服务,打开的进
Priority
- C# 线程优先级定义实例,程序先演示如何创建优先级,可创建最高优先、普通优先和最低级别的线程实例,通过点击左侧的按钮确定后,右侧来显示线程运行信息,显示优先级信息供参考,在C#中,设置线程执行的优先级同为重要课程,对优化应用程序,提高执行效率有较好的意义-Prioridades de C# de rosca definen los casos, el programa muestra cómo crear una primera prioridad, para crear la más alta
Nested-parallelism
- 嵌套并行,OpenMP 采用 fork-join(分叉-合并)并行执行模式。线程遇到并行构造时,就会创建由其自身及其他一些额外(可能为零个)线程组成的线程组。遇到并行构造的线程成为新组中的主线程。-Nested parallelism, OpenMP using fork-join (fork- Merge) parallel execution mode. When a thread encounters a parallel construct, it creates its own and
LoopInThread
- C#创建线程与循环的例子,此为演示代码,创建新线程,并创建ThreadStart委托对象,消息传输方法AddMsg,在方法中使用循环实现传输功能,在循环中创建线程,在循环中创建并使用线程,传输一行,并将该行删除,点击测试按钮“传输”即可完成测试。-C# to create a thread and circular example, this is the demo code, create a new thread, and create a ThreadStart delegate obje
LoopInThread
- #创建线程与循环的例子,此为演示代码,创建新线程,并创建ThreadStart委托对象,消息传输方法AddMsg。-# Create a thread with examples of the cycle, this is the demo code, create a new thread, and create ThreadStart delegate object, message transmission method AddMsg.
Chat
- 图形界面网络聊天室利用多线程创建一个图形界面的网络聊天程序(Graphical interface network chat room)