취미 기록용 블로그
MFC로 뭔가 작성하다가 보니 안드로이드 개발할때 Log.d(“linsoo”,””); 이게 생각난다 간단하게 디버깅할때 값 출력하긴 이게 딱인데 그래서 콘솔창 쓰는법 없나 검색해보니 있다. #ifdef _DEBUG #pragma comment(linker, “/entry:WinMainCRTStartup /subsystem:console”) #endif 공통헤더파일에 이거 하나 추가해주면 디버깅모드로 작업시 항상 콘솔창이 추가로 뜨게 된다. “read more”
template <typename Outit> int split(const std::wstring &pattern, const std::wstring &subject, Outit Dest){ std::wstring::size_type pattern_length = pattern.length(); std::wstring::size_type beginpos = 0; std::wstring::size_type endpos = subject.find(pattern); while (endpos != std::wstring::npos){ *Dest = subject.substr(beginpos, endpos-beginpos); beginpos = endpos + pattern_length; endpos = subject.find(pattern,… “read more”