CString Temp;
if (Temp == "")
{
//空
}
if (Temp.IsEmpty())
{
//空
}
if (Temp.GetLength() == 0)
{
//空
}
怎么判断CString的类型是否为空
最新推荐文章于 2021-08-10 11:33:10 发布
CString Temp;
if (Temp == "")
{
//空
}
if (Temp.IsEmpty())
{
//空
}
if (Temp.GetLength() == 0)
{
//空
}