搜索资源列表
-
0下载:
用户在使用VC++开发应用程序时,主要有两种方法:调用Windows提供的API函数(Application Programming Interface)和直接使用Microsoft提供的MFC类库(Microsoft Foundation Class)。与MFC相比,API更贴近操作系统,也是每一个Windows程序员必须掌握的。
本文将以一个类似Windows的计算器程序为例,简述Windows API程序设计的方法和一些基本技巧。
思路和算法 -Users i
-
-
0下载:
利用Windows提供的MFC类编程实现读者/写者的同步互斥问题,保证:1)一个人在写时,其他人不允许写;2)一个人在写时,其他人不允许读;3)一个人在读时,其他人不允许写;4)一个人在读时,其他人允许读。-MFC classes provided by Windows programming reader/writer mutual exclusion synchronization to ensure that: 1) When a person writes, others are not
-