CString <-> int , CString <-> double 변환
반응형
// CString -> int convert
CString strNum = _T("5");
int nNum = _ttoi(strNum);
// int -> CString convert
int nNum = 5;
CString strNum;
strNum.Format(_T("%d"), nNum);
// CString -> double
CString strNum = _T("5.5");
double nNum = _wtof(strNum);
vEye.z = (float)atof(strName);
// double -> CString
double nNum = 5.5;
CString strNum;
strNum.Format(_T("%f"), nNum);
// Multibyte 기반일 경우
// _ttoi -> atoi
// _wtof -> atof 로 바꿔주면 된다
CString strNum = _T("5");
int nNum = _ttoi(strNum);
// int -> CString convert
int nNum = 5;
CString strNum;
strNum.Format(_T("%d"), nNum);
// CString -> double
CString strNum = _T("5.5");
double nNum = _wtof(strNum);
vEye.z = (float)atof(strName);
// double -> CString
double nNum = 5.5;
CString strNum;
strNum.Format(_T("%f"), nNum);
// Multibyte 기반일 경우
// _ttoi -> atoi
// _wtof -> atof 로 바꿔주면 된다
'유용한 것들_func' 카테고리의 다른 글
마우스 커서 모양 LoadCursor (0) | 2009.12.15 |
---|---|
MultiByteToWideChar (0) | 2009.11.12 |
Cubemap D3DFMT_DXT1으로 저장하기. (0) | 2009.08.20 |
FreeType 을 이용한 TrueType Font 파일 읽기 (0) | 2009.08.18 |
USES_CONVERSION (0) | 2009.08.09 |
TAGS.