求助,VC中关于CString和_T的问题
void CEditDemoDlg::OnBtnCount() {
// TODO: Add your control notification handler code here
CString strInput;
GetDlgItemText(IDC_EDT_INPUT,strInput);
int nLen=strInput.GetLength();
int nCount=0;
for(int i=0;i<nLen;i++)
{
if((BYTE)strInput[i]>0x7F)
{
i++;
}
nCount++;
}
CString strOutput;
strOutput.Format(_T("字符串长度: %d,字符个数: %d"),nLen,nCount);
SetDlgItemText(IDC_STATIC_OUTPUT,strOutput);
}
1,CString创建 strInput对象后为什么就可以用其数组了
2,_T是什么意思,怎么用
我是刚自学VC好多地方不明白,希望大家帮忙,谢谢啦