CString sTmp = "abcdefg";
sTmp.SetAt(2) = '\0';
请问有没有内存泄漏?
sTmp.SetAt(3) = '\0';
会不会有问题?