Я получаю ошибки компиляции на g++ (GCC) 4.7.2
, но не на MSVC-2012
при попытке std::vector::push_back
не копируемого (private copy constructor), а перемещаемого объекта. Для меня мой пример похож на многие другие примеры на SO и в других местах. Сообщение об ошибке заставляет его выглядеть как проблема с тем, что структура не является "прямым конструктивным" - я не знаю, что это значит, поэтому вы не уверены в том, почему объект должен быть "прямым конструктивным", который нужно отбросить назад.
#include <vector>
#include <memory>
struct MyStruct
{
MyStruct(std::unique_ptr<int> p);
MyStruct(MyStruct&& other);
MyStruct& operator=(MyStruct&& other);
std::unique_ptr<int> mP;
private:
// Non-copyable
MyStruct(const MyStruct&);
MyStruct& operator=(const MyStruct& other);
};
int main()
{
MyStruct s(std::unique_ptr<int>(new int(5)));
std::vector<MyStruct> v;
auto other = std::move(s); // Test it is moveable
v.push_back(std::move(other)); // Fails to compile
return 0;
}
Дает ошибки
/usr/lib/gcc/x86_64-redhat-linux/4.7.2/../../../../include/c++/4.7.2/type_traits: In instantiation of ‘struct std::__is_direct_constructible_impl<MyStruct, const MyStruct&>’:
... snip ...
/usr/lib/gcc/x86_64-redhat-linux/4.7.2/../../../../include/c++/4.7.2/bits/stl_vector.h:900:9: required from ‘void std::vector<_Tp, _Alloc>::push_back(std::vector<_Tp, _Alloc>::value_type&&) [with _Tp = MyStruct; _Alloc = std::allocator<MyStruct>; std::vector<_Tp, _Alloc>::value_type = MyStruct]’
main.cpp:27:33: required from here
main.cpp:16:5: error: ‘MyStruct::MyStruct(const MyStruct&)’ is private
Простой обходной путь из разных ответов:
- Используйте
MyStruct(const MyStruct&) = delete;
вместоprivate ctor
hack - Inherit
boost::noncopyable
(или другой класс с закрытым ctor)