1. unique_ptr

유일한 소유를 가지는 포인터

사용법

특징

주의사항

auto u_ptr = make_unique<int[]>(10);

위 방식보단 std::array, std::vector을 사용하자