谢谢。

解决方案 »

  1.   

    C run-time library (without iostream or standard C++ library) Characteristics Option Preprocessor directives  
    LIBC.LIB Single-threaded, static link /ML   
    LIBCMT.LIB Multithreaded, static link /MT _MT 
    MSVCRT.LIB Multithreaded, dynamic link (import library for MSVCR71.DLL). Be aware that if you use the Standard C++ Library, your program will need MSVCP71.DLL to run. /MD _MT, _DLL 
    LIBCD.LIB Single-threaded, static link (debug) /MLd _DEBUG 
    LIBCMTD.LIB Multithreaded, static link (debug) /MTd _DEBUG, _MT 
    MSVCRTD.LIB Multithreaded, dynamic link (import library for MSVCR71D.DLL) (debug) /MDd _DEBUG, _MT, _DLL