摘要:
转自: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... 阅读全文
摘要:
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); 阅读全文