본문 바로가기

프로그램언어/C++

[C++ ] 스마트 포인터 사용 바디

#include <iostream>

#include <memory>


int main()

{

std::auto_ptr< int > aa( new int );

return 0;

}


이걸 기초로 만드세요..질의는 이제 그만!