일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 빅 데이터
- 김양재
- openCV
- R
- c++
- data science
- 통계
- 빅데이타
- Big Data
- 인공지능
- 빅 데이타
- Artificial Intelligence
- Statistics
- WebGL
- node.js
- 빅데이터
- nodeJS
- 김양재 목사님
- No SQL
- 딥러닝
- 몽고디비
- Deep learning
- 주일설교
- Machine Learning
- 우리들교회
- probability
- 데이터 과학
- 확률
- 김양재 목사
- MongoDB
Archives
- Today
- Total
목록std::string (1)
Scientific Computing & Data Science
[C/C++] MFC / CString과 std::string 타입 변환
1. CString ▶ std::stringCString str = "hello";std::string stdStr = str.GetBuffer(0); 2. std::string ▶ CStringstd::string stdStr = "hello";CString str = stdStr.c_str();또는CString str("Hello"); // Convert a TCHAR string to a LPCSTR CT2CA pszConvertedAnsiString(str); // Construct a std::string using the LPCSTR input std::string s(pszConvertedAnsiString);
Programming/C&C++
2014. 9. 1. 10:56