我想這很自我解釋 - 我似乎無法使用C++ 11功能,即使我認爲我已經正確設置了所有內容 - 這可能意味着我不知道。錯誤:'unique_ptr'不是'std'的成員
這裏是我的代碼:
#include <cstdlib>
#include <iostream>
class Object {
private:
int value;
public:
Object(int val) {
value = val;
}
int get_val() {
return value;
}
void set_val(int val) {
value = val;
}
};
int main() {
Object *obj = new Object(3);
std::unique_ptr<Object> smart_obj(new Object(5));
std::cout << obj->get_val() << std::endl;
return 0;
}
這裏是我的版本的G ++:
[email protected]:~/Desktop$ g++ --version
g++ (Ubuntu/Linaro 4.7.3-2ubuntu1~12.04) 4.7.3
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
這裏是我如何編譯代碼:
[email protected]:~/Desktop$ g++ main.cpp -o run --std=c++11
main.cpp: In function ‘int main()’:
main.cpp:25:2: error: ‘unique_ptr’ is not a member of ‘std’
main.cpp:25:24: error: expected primary-expression before ‘>’ token
main.cpp:25:49: error: ‘smart_obj’ was not declared in this scope
請注意,我已經試過-std=c++11
和-std=c++0x
都無濟於事。
我從英特爾x64機器上的閃存驅動器運行Ubuntu 12.04 LTS。
[此引用(HTTP編譯頭:// EN .cppreference.com/w/cpp/memory/unique_ptr)告訴你需要包含的頭文件。 – juanchopanza