本文介绍了顺便说一句,VisualStudio C++ 中的/MD 和/MDD 有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
c/c++中/MD和/MDD(多线程调试dll)有什么区别->代码生成
What is difference betwwen /MD and /MDD( multi threaded debug dll ) in c/c++->code generation
visual studio 的属性....
propertis of visual studio ....
推荐答案
它们指定要使用的运行时.两者都使用多线程动态 (DLL) 运行时,但/MDD 版本使用调试版本并为您定义 _DEBUG 符号.有关详细信息,请参阅此 MSDN 页面.
They specify which runtime to use. Both use mmulti-threaded dynamic (DLL) runtimes, but the /MDD version uses the debug version and also defines the _DEBUG symbol for you. See this MSDN page for details.
这篇关于顺便说一句,VisualStudio C++ 中的/MD 和/MDD 有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!