-
线程关联类
#include "ThreadPool.h"#include "WorkerThread.h"#include "Task.h"/******************************************************************************** 线程池******************************************************************************/CThreadPool::CThreadPool(int initnum){m_threadNum = initnum;m_maxThrNum = initnum * 2; // 最多线程数for(int i = 0; i < m_threadNum; i++){ CWorkerThread* thr = new CWorkerThread(); thr->SetThreadPool(this); thr->Start();AppendToIdleList(thr); }m_monitor = 0;}CThreadPool::~CThreadPool(){ TerminateAll();}void CThreadPool::TerminateAll(){m_mtxTaskList.Lock();m_taskList.clear();m_mtxTas
- 2022-06-13 18:08:15下载
- 积分:1
-
Chat_demo
服务器,客户端聊天小程序,可能功能有点简单,但是原理都在(The server, the client chat applet)
- 2013-09-03 11:12:31下载
- 积分:1
-
圣者无敌
大通圣者无敌商业服务端全套特此奉献~各位喜欢当年这款游戏的玩家(SOMA GAME SERVER
Dedicated to the players of the game)
- 2021-04-09 14:58:59下载
- 积分:1
-
visible_light
说明: 可见光通信代码仿真。可以在matlab上进行matlab仿真。(Visible Optical Communication Simulation Code)
- 2021-04-19 23:38:50下载
- 积分:1
-
Box-Ver1.0
智能插座源码,可编译,正常运行,好东西,请不要用于商业用途(smart Box)
- 2021-04-18 10:18:57下载
- 积分:1
-
89103052
一个简单的ping程序,能实现cmd环境下的ping命令,但比较简单()
- 2018-02-14 20:30:58下载
- 积分:1
-
C#合成图片 组合文字及图像的实例
C# 将多个文字图形图像组合成复合图形,一个组合文字及图像的实例。基于WPF技术实现,可作为一个C#学习WPF图像处理的简单范例。C# 将多个文字图形图像组合成复合图形:
DrawingGroup MyGroup = new DrawingGroup();
RadialGradientBrush MyRadialGradientBrush = new RadialGradientBrush();
MyRadialGradientBrush.Freeze();
FontStyle MyStyle = FontStyles.Normal;
FontWeight MyWeight = FontWeights.Medium;
MyWeight = FontWeights.Bold;
MyStyle = FontStyles.Italic;
string MyText = "Visual C++ 2017源码素材网实例精粹罗斌编著";
var MyFont = new FontFamily("宋体");
FormattedText MyFormattedText = new FormattedText(MyText,
System.Globalization.CultureInfo.GetCultureInfo(86),
FlowDirection.RightToLeft,
new Typeface(MyFont, MyStyle, MyWeight, FontStretches.Normal),
FontSize, MyRadialGradientBrush);
Pen MyPen = new Pen(Brushes.Black, 2);
MyPen.Freeze();
……
更多源代码敬请下载本源码。运行截图如下图所示。
- 2022-06-30 08:36:55下载
- 积分:1
-
05-1
说明: C#4.0中文视频教程第五讲循环语句程序代码(C#4.0 Chinese Video Course Lecture 5 Loop Statements)
- 2020-06-17 20:00:02下载
- 积分:1
-
ZrchitectureGSMversion
GSM的架构说明,PPT,英文版,大学讲稿(GSM Architecture description, English version, university lecture notes)
- 2018-09-22 03:08:40下载
- 积分:1
-
ChinaBlock
说明: 俄罗斯方块C#版比较好的一个游戏实例,可以提供给大家学习(Tetris C# Version of a better example of a game can be made available to the U.S. study)
- 2008-08-31 09:16:32下载
- 积分:1