我尝试将 a 的最后一个字符转换CString
为int
using CString::GetAt()
,_tstoi()
但编译器返回 me error C2065: '_tstoi' : undeclared identifier
。我想我必须包含一个头文件,我试过#include "tchar.h"
没有成功。
CString str = "something2";
int index = 0;
if (!str.IsEmpty())
{
index = _tstoi((char*)str.GetAt(str.GetLength() - 1));
}
编辑:我使用 VC++ 6.0