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-23 andrew HTML 파싱해서 원하는 정보 가져오기 출처 : http://findfun.tistory.com/tag/C%23%20%EB%B8%8C%EB%9D%BC%EC%9A%B0%EC%A0%B8 System.Windows.Fo...
2014-07-16 andrew 이번 포스팅은 특정사이트의 HTML 태그를 가져와서 출력하는 것까지 다룹니다. 개발 툴은 Visual Studio 2012를 사용했습니다. # 화면 구성 - url 영역 - url...