Eclipse CDT C++11 사용 설정(#include <thread>)
C++/problemsC++ 2021. 7. 23. 13:55'C++ > problemsC++' 카테고리의 다른 글
MFC Char* to CString (0) | 2020.11.27 |
---|---|
매개변수로 배열 전달시 sizeof 문제 (0) | 2020.10.22 |
MFC CString to Char* (0) | 2020.10.12 |
'C++/problemsC++'에 해당되는 글 4건Eclipse CDT C++11 사용 설정(#include <thread>)C++/problemsC++ 2021. 7. 23. 13:55'C++ > problemsC++' 카테고리의 다른 글
MFC Char* to CStringC++/problemsC++ 2020. 11. 27. 11:00char* to CString 'C++ > problemsC++' 카테고리의 다른 글
매개변수로 배열 전달시 sizeof 문제C++/problemsC++ 2020. 10. 22. 10:19매개변수로 배열 전달시 배열이 주소값을 넘겨주므로 'C++ > problemsC++' 카테고리의 다른 글
MFC CString to Char*C++/problemsC++ 2020. 10. 12. 10:43출처 : https://skql.tistory.com/559 방법은 1. (LPSTR)(LPCTSTR)로 강제 형변환 2. CString str; str.GetBuffer(str.GetLength()); 해주시면 char *을 리턴합니다. ps. 위 두가지 방법중에 2번을 추천합니다. 그리고 GetBuffer를 사용하시면 ReleaseBuffer()를 사용해서 해제해 주셔야합니다.
char Buffer[255]; CString szString; size_t CharactersConverted = 0; wcstombs_s(&CharactersConverted, Buffer, szString.GetLength()+1, szString, _TRUNCATE);
'C++ > problemsC++' 카테고리의 다른 글
|