[MFC] CString <-> char* / int CString => char* 변환 char * ch; CString *str; 1) ch = (LPSTR)(LPCSTR)str; 2) ch = str.GetBuffer(str.GetLength()); 3) wsprintf( ch, "%s", str); char* => CString 변환 1) str = (LPCSTR)(LPSTR)ch; 2) str = ch; CString => int 변환 int a; CString strTest = _T("abc"); a = _ttoi(strTest); 문자열에서 숫자만 추출하기 CString str = _T("abc123def456"); CString strNumber(_T("")); for(int i = 0; i < str.GetLength(); i++){ cha.. 더보기 [Java] String -> int /// int -> String String : 문자열 ["123"] int : 숫자 [ 123 ] 입니다. 그런데 String을 int로 바꾸려고 합니다. 뭐 간단하죠~ String str = "123"; //string "123"선언 System.out.println((int)str); //"123"을 123으로 바꾼다. !!! 그런데 오류가 납니다. System.out.println((int)str); 왜 오류가 날까요? 메모리 차이때문입니다. 메모리 차이때문에 손실이 발생할수 있기때문이죠.(자세한건 네이버ㅋ) String 은 (문자수)byte String = char[] char = 1byte String 1*문자수 = 문자수 정확하지 않을수있습니다. 아시는분은 댓글로.. int 는 4byte 그럼 어떻게 할까요? System... 더보기 [MFC] CEdit Styles Edit Styles Visual Studio 2010 http://msdn.microsoft.com/ko-kr/library/6e36b89f(v=vs.100).aspx ES_AUTOHSCROLL Automatically scrolls text to the right by 10 characters when the user types a character at the end of the line. When the user presses the ENTER key, the control scrolls all text back to position 0. ES_AUTOVSCROLL Automatically scrolls text up one page when the user presses ENTER on the .. 더보기 이전 1 ··· 34 35 36 37 38 39 40 ··· 61 다음