<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0">
  <title type="html">The Winner Takes It All: C-Visual-Leak-Detector-STL-Port에 달린 최근 댓글/트랙백 목록</title>
  <id>http://www.nohungry.net/tt1/</id>
  <link rel="alternate" type="text/html" hreflang="ko" href="http://www.nohungry.net/tt1/" />
  <subtitle type="html">뽐뿌가 없으면 블로그도 없다.</subtitle>
  <updated>2012-01-10T07:40:54+09:00</updated>
  <generator>Textcube 1.7.7 : Beta 2</generator>
  <entry>
    <title type="html">우하하님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://www.nohungry.net/tt1/117#comment791" />
    <author>
      <name>(우하하)</name>
    </author>
    <id>http://www.nohungry.net/tt1/117#comment791</id>
    <published>2008-08-07T08:42:26+09:00</published>
    <summary type="html">다음 URL을 참고해서 VC6에 있는 STL에 대해서 버그픽스를 해보시죠.
http://woohaha.egloos.com/790425
버그픽스한 제 시스템에서는 메모리릭이 발생하지 않는 것으로 봐서 VC6에 들어있는 STL의 버그 때문에 생기는 현상인 듯 싶군요.
[참조]
http://www.dinkumware.com/vc_fixes.html
http://madchick.egloos.com/237931</summary>
  </entry>
  <entry>
    <title type="html">마틴님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://www.nohungry.net/tt1/117#comment726" />
    <author>
      <name>(마틴)</name>
    </author>
    <id>http://www.nohungry.net/tt1/117#comment726</id>
    <published>2007-11-29T11:58:50+09:00</published>
    <summary type="html">Visual Leak Detector라.. 좋은거 알았네 ^^*</summary>
  </entry>
  <entry>
    <title type="html">NOhungry님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://www.nohungry.net/tt1/117#comment727" />
    <author>
      <name>(NOhungry)</name>
    </author>
    <id>http://www.nohungry.net/tt1/117#comment727</id>
    <published>2007-11-29T23:09:46+09:00</published>
    <summary type="html">Memory Leak은 프로그래머들의 가장 큰 적이지요-ㅁ-</summary>
  </entry>
  <entry>
    <title type="html">까막님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://www.nohungry.net/tt1/117#comment730" />
    <author>
      <name>(까막)</name>
    </author>
    <id>http://www.nohungry.net/tt1/117#comment730</id>
    <published>2007-11-30T11:50:04+09:00</published>
    <summary type="html">어머나.. 어느분이 제 글을 참고하셨는지 갑자기 궁금.. 해지네요 :)
STLPort 괜찮습니다. 씨익. 

Memory Leak을 코드단계에서 방지하는 방법중 하나가 Smart Pointer이지요.
http://www.boost.org 에서 제공하는 boost::shared_ptr&amp;lt;&amp;gt;을 사용해 보시는 것도 좋을듯 합니다. :)</summary>
  </entry>
  <entry>
    <title type="html">원두님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://www.nohungry.net/tt1/117#comment731" />
    <author>
      <name>(원두)</name>
    </author>
    <id>http://www.nohungry.net/tt1/117#comment731</id>
    <published>2007-11-30T13:33:34+09:00</published>
    <summary type="html">Visual Leak Detector~ 괜찮은 녀석이군. 나도 나중에 함 써 봐야지~
메모리 Leak이 몇개나 나올지... 내심 두렵구먼~ㅋㅋ</summary>
  </entry>
  <entry>
    <title type="html">NOhungry님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://www.nohungry.net/tt1/117#comment732" />
    <author>
      <name>(NOhungry)</name>
    </author>
    <id>http://www.nohungry.net/tt1/117#comment732</id>
    <published>2007-11-30T13:56:04+09:00</published>
    <summary type="html">오옷.. 안녕하세요.ㅋ

STLPort 괜찮죠..^^ 근데, 까막님은 STLPort 버전 어떤거 쓰세요? 전 처음에 5.1.4 설치하려고 했더니, 빌드하고 Path를 제대로 설정했음에도 계속 Link Error 뜨고, 그래서..

다시 4.5.3으로 바꿨답니다-ㅁ-

</summary>
  </entry>
  <entry>
    <title type="html">NOhungry님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://www.nohungry.net/tt1/117#comment733" />
    <author>
      <name>(NOhungry)</name>
    </author>
    <id>http://www.nohungry.net/tt1/117#comment733</id>
    <published>2007-11-30T13:57:27+09:00</published>
    <summary type="html">에~ 애시당초 Memory Leak은 코드 단계에서 방지하는게 좋죠. 프로그래머가 메모리 해제를 하는게 아니라, 소멸자가 해주도록 하는 방향으로..^^

RAII란 개념인데, SmartPointer라고도 하죠.

사람들이 대부분 boost 라이브러리를 많이 쓰더라구요. 전 그냥, STL에 있는 auto_ptr를 쓰거나, 그냥 구현해서 쓴답니다.ㅋ</summary>
  </entry>
  <entry>
    <title type="html">까막님의 댓글</title>
    <link rel="alternate" type="text/html" href="http://www.nohungry.net/tt1/117#comment734" />
    <author>
      <name>(까막)</name>
    </author>
    <id>http://www.nohungry.net/tt1/117#comment734</id>
    <published>2007-11-30T18:50:12+09:00</published>
    <summary type="html">STLPort는 5.1.4(at VC++2003, 2005) 씁니다. :)

std::auto_ptr도 좋긴한데 컨테이너에 넣을수가 없다는 최대단점이(!!).. ;ㅁ;</summary>
  </entry>
</feed>

