摘要:
_T("")是一个宏,他的作用是让你的程序支持Unicode编码。 阅读全文
摘要:
CStringres;CStringstr=_T("abcdefghijklmn");res=str.Mid(2,3);//从第3位字母开始,共取3个字符ASSERT(res==_T("cde"));res=str.Left(3);//从左边数起,共取3个字符ASSERT(res==_T("abc"));res=str.Right(3);//从右边数起,共取3个字符ASSERT(res==_T("lmn"));res=str.SpanIncluding(_T("edcba"));//遇到参数里没 阅读全文
摘要:
char str_2[10]; int a=1234321; sprintf(str_2,"%d",a); 阅读全文