tip for auto_ptr with C++ 1. how to test whether auto_pointer is null? if (!myPointer.get()) { // do not dereference here } 2. how to pass auto_pointer ? std::auto_ptr<class> ptr_class = std::auto_ptr( new class ); Share this:Click to share on Twitter (Opens in new window)Click to share on Facebook (Opens in new window) Related Posted on 2015-06-10 8:09 PM by andrew Comment 📂This entry was posted in C/C++
2014-07-16 andrew MFC 타이머일정 시간 뒤에 원하는 업무를 처리하기 사용합니다. 비슷한 기능으로 Sleep( millisecond ) 를 입력하는데요. Sleep을 이용할 경우 해당 쓰레드 전체가 멈추어 버리...
2014-07-23 andrew VARIANT to std::stringHere's one way, not necessarily the best. In general, std::string doesn't play very well with VARIAN...