我有一个简单的应用程序,我尝试使用 VC express 编译并使用:
包含 MFC 和 ATL 的 Windows server 2003 的 Microsoft 平台 SDK。现在我有这个简单的代码:
CString strValue("test");
CString s = strValue.Trim();
LPCTSTR lpStr = (LPCTSTR)strValue.Trim()
这给了我一个编译错误: c:\dev\test.cpp(463) : 错误 C2039: 'Trim' : is not a member of 'CString' c:\program files\microsoft platform sdk for windows server 2003 r2\include \mfc\afx.h(369) : 见 'CString' 的声明
我的平台 SDK 和 vc express 有问题吗?