发布网友 发布时间:2022-04-25 07:22
共1个回答
热心网友 时间:2023-05-15 14:58
void Empty( );
说明:
更多的信息,参见“Visual C++程序员指南”中的“字符串:CString异常清除”。
示例:下面的例子说明了如何使用CString::Empty。
// example for CString::Empty
CString s( abc );
s.Empty();
ASSERT( s.GetLength( ) == 0 );
请参阅 CString::IsEmpty