티스토리 뷰
MFC
※ UniCode // 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); // double -> CString double nNum = 5.5; CString strNum; strNum.Format(_T("%f"), nNum); ※ Multibyte _ttoi -> atoi _wtof -> atof
링크 : http://frostguy.tistory.com/32
[작성] devbible.tistory.com
'Development' 카테고리의 다른 글
[Linux] 비밀번호 입력없이 sudo 쓰기 (Sudo command without password) (0) | 2018.09.12 |
---|---|
[VirtualBox] 호스트 전용 네트워크 생성 실패시 (Failed to create host only network interface) (0) | 2018.09.11 |
[Maven] invalid LOC header (bad signature) (0) | 2018.05.10 |
[Java] Read only List (UnModifiableList) (1) | 2018.02.18 |
[Build] 빌드시 EXE 에 DLL 포함 시키기 (0) | 2017.09.19 |
댓글
최근에 올라온 글
글 보관함
- Total
- Today
- Yesterday