- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Link
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
목록CString (3)
드럼치는 프로그래머
[API/MFC] CString 선언 헤더파일
CString 클래스를 사용하기 위해서는 다음 헤더파일을 포함시켜야 한다. 1. MFC 프로젝트 : cstringt.h 2. 아니면 : atlstr.h [출처] http://blog.naver.com/xlogic?Redirect=Log&logNo=50043890949
★─Programing/☆─API | MFC
2013. 6. 4. 10:08
[API/MFC] CString, CPoint, CRect, CSize, CTime
CString - 가변 길이 문자열 지원 (최대길이 INT_MAX -1) - const char*, LPCTSTR대신 CString 사용가능 -선언, 초기화 CString str1; str1="문자열" CString str2("문자열"); CString str3(str2) CString str4(str1+" "+str2); str4+="문자열"; cout
★─Programing/☆─API | MFC
2011. 5. 6. 15:44
[API/MFC] CString methods
CString::GetLength 이 메소드는 CString 객체 안에 있는 캐릭터의 count를 반환한다. 이 count는 종료null문자를 포함하지 않는다. // example for CString::GetLength CString s( "abcdef" ); ASSERT( s.GetLength() == 6 ); CString::IsEmpty 이 메소드는 CString 객체가 비어있는지를 결정한다. // example for CString::IsEmpty CString s; ASSERT( s.IsEmpty() ); CString::Empty 이 메소드는 CString객체를 비어있고 free memory로 만든다. // example for CString::Empty CString s( "abc" ); ..
★─Programing/☆─API | MFC
2011. 5. 6. 14:47