C++ 같으면

t_object* object_instance = new t_object();


이러고 나서 쓰고 나면


delete object_instance;


이렇게 해제하면 되는데



t_object object_instance = new object_instance();


이렇게 하고 나서 따로 해제하는 방법은 없음?


unsafe로 가야하나?