调试模式下有什么好处吗??那么在非调试模式下又有什么不一样呢

解决方案 »

  1.   

    低手来了,MSDN的介绍,嘿嘿。
    ^_^When you create a project using Visual C++, both a Debug and a Release version are automatically created with default options set for each.Debug version: Full symbolic debugging information in Microsoft format 
    No optimization (optimization generally makes debugging more difficult)
     
    Release version: No symbolic debugging information
    Optimized for maximum speedNote: By using the C/C++ tab in the Project Settings dialog, you can change the debugging options for the compiler. Similarly, on the Link tab, by using the Debug Category, you can change the debugging options for the linker.