我在 C++ 中编码,使用 Visual Studio 作为 IDE。
我正在尝试使用 C++ 智能指针,但出现错误:
error C2039: 'shared_ptr' : is not a member of 'std'
error C2039: 'unique_ptr' : is not a member of 'std'
包括我:
#include <memory>
但它并没有解决问题。
我可以在 Visual Studio 2008 中使用此功能吗?我需要迁移到 Visual Studio 2010 吗?