Debug Multithreaded DLL(vc++6.0)

其中,
Single-Threaded                    单线程静态链接库(release版本)
Multithreaded                      多线程静态链接库(release版本)
multithreaded DLL                  多线程动态链接库(release版本)
Debug Single-Threaded              单线程静态链接库(debug版本)
Debug Multithreaded                多线程静态链接库(debug版本)
Debug Multithreaded DLL            多线程动态链接库(debug版本)
单线程: 不需要多线程调用时, 多用在DOS环境下
多线程: 可以并发运行
静态库: 直接将库与程序Link, 可以脱离MFC库运行
动态库: 需要相应的DLL动态库, 程序才能运行
release版本: 正式发布时使用
debug版本: 调试阶段使用

猜你喜欢

转载自blog.csdn.net/iot_shun/article/details/80275514
今日推荐