형 변환
char* to string
string temp_file;
char szPath[256] = "C:\\Projects";
temp_file = string(szPath);
temp_file += string ("\\file.tmp");
string to char*
string temp_file = "\\file.tmp";
char szPath[256] = "C:\\Projects";
strcat(szPath, temp_file.c_str());
반응형
'IT-개발,DB' 카테고리의 다른 글
[개발/MFC] 스트링 형변환 (0) | 2012.01.07 |
---|---|
[개발/MFC] error LNK2005: --- .obj에 이미 정의되어 있습니다. 오류 (0) | 2012.01.05 |
[개발/C++] 문자열 치환/변환 (0) | 2012.01.03 |
[개발/VC++] warning LNK4098: 'libcmt.lib' defaultlib가 다른 라이브러리와 충돌합니다 (0) | 2012.01.02 |
[개발/C++] error LNK2019: __imp__PathRemoveFileSpecA@4 외부 기호 (0) | 2011.12.28 |
댓글