2013年2月7日
摘要: 1. lib里是c或c++运行库的引入库和静态库(如msvcrt.lib、msvcprt.lib和libcmt.lib、libcpmt.lib); 2. atlmfc里的lib是mfc的引入库和静态库(--此处:mfc100.lib应该是对应mfc100.dll的静态库,而mfcs100.lib应该是其引入库--); (注:mfc100.dll是4.14MB,mfc100.lib是5.24MB... 阅读全文
posted @ 2013-02-07 23:36 qinfengxiaoyue 阅读(1327) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.fmddlmyy.cn/text3.html , 有改动. 1、Run-Time Library(运行时库) Run-Time Library是编译器提供的标准库,提供一些基本的库函数和系统调用。 我们一般使用的Run-Time Library是C Run-Time Libraries。当然也有Standard C++ libraries。 C Run-Tim... 阅读全文
posted @ 2013-02-07 23:31 qinfengxiaoyue 阅读(3372) 评论(0) 推荐(1) 编辑
摘要: CString strSrc("123");CStringA strSrcA(strSrc);CStringW strSrcW(strSrc);const char* p1 = strSrcA;const WCHAR* p2 = strSrcW;string strDesA((LPCSTR)strSrcA);wstring strDesW((LPCWSTR)strSrcW); 阅读全文
posted @ 2013-02-07 16:48 qinfengxiaoyue 阅读(656) 评论(0) 推荐(0) 编辑