-
很好的C语言查看工具 sourceinsight
很好的C语言查看工具,完全破解版相信大家都知道这个查看工具吧,如果没有可以下载下来(Very good tool for C language view, fully cracked version I think you know the view tool bar, if there is no can be downloaded from)
- 2020-06-26 02:20:01下载
- 积分:1
-
cplex
Cplex 中文教程,主要用于求解线性规划、整数规划和二次规划软件(Cplex Chinese tutorial, mainly used to solve linear programming, integer programming and secondary planning software)
- 2020-12-18 08:19:11下载
- 积分:1
-
cPPFunction_Librialy
说明: c++语言的很多函数都在这本书里面涉及到了,学习本书可以让你在c++编程上可以更好地利用函数库(c++ language, many functions are in this book relate to the learning book allows you to c++ programming can make better use of library)
- 2010-04-01 17:43:49下载
- 积分:1
-
2009102816302101
详细讲解了VC++使用ADO对SQL SERVER的操作(Explained in detail the use of ADO in VC++ the operation of SQL SERVER)
- 2009-11-02 17:39:39下载
- 积分:1
-
计算器
仿照windows做的小型计算器
- 2022-10-13 06:30:04下载
- 积分:1
-
hhhhhh
该编程使用VC++编写代码,该编程主要作用便是将灰度图像的各灰度值统计出来,以方便对该灰度图像的了解 (The programming code using VC++ The main role is to be programmed for each grayscale image gray value statistics out to facilitate the understanding of the gray image)
- 2013-11-04 19:59:36下载
- 积分:1
-
The-C-Programming-Language
介绍标准C语言及其程序设计放吧的权威行经典著作(Introduction of C programming language)
- 2009-07-15 13:00:53下载
- 积分:1
-
poly
说明: 多项式计算器,使用数据结构中的链表实现。在VC++下编译运行。(Polynomial calculator, the use of the linked list data structure to achieve)
- 2011-03-17 17:19:50下载
- 积分:1
-
VC6.0 使用信号量Semaphore实现线程的同步
VC6.0 使用信号量Semaphore实现线程的同步,使用信号量实现线程同步,设置访问保护对象的最多线程数为2,确定当前已经启动运行的线程数目,可以创建线程。
CWinThread* pThread=AfxBeginThread(ThreadProc,&m_Edit);//开辟一个工作线程,
int thread=0;//全局变量记录当前运行线程的数目
CSemaphore mySemaphore(2,2);//创建CSemaphore类对象
UINT ThreadProc(LPVOID pParam)//工作线程入口函数
{
CEdit *pedit=(CEdit*)pParam;
CString str;
thread++;//线程数目加1
str.Format("%d",thread);
pedit->SetWindowText(str);//编辑框显示
CSingleLock singlelock(&mySemaphore);//创建CSingleLock类对象
singlelock.Lock();//计数器初始值减1
MessageBox(NULL,"信号量控制访问资源线程数","提示",MB_ICONWARNING);//弹出对话框
thread--;//线程数目减1
str.Format("%d",thread);
pedit->SetWindowText(str);//编辑框显示
return 0;
}
- 2022-02-20 19:37:49下载
- 积分:1
-
CPP-programming-ideas
C++编程思想,很全的一本书!有代码解析...(C++ programming ideas, it is full of a book!There are parsing code in it.)
- 2014-02-24 15:42:02下载
- 积分:1