コピー不可 (プライベート コピー コンストラクター) で移動可能なオブジェクトを使用しようとすると、コンパイル エラーg++ (GCC) 4.7.2
が発生しますが、発生しません。私にとって、私の例は、SO や他の場所の他の多くの例と同じに見えます。エラーメッセージは、構造体が「直接構築可能」ではないという問題のように見えます-これが何を意味するのかわからないので、オブジェクトをプッシュバックするために「直接構築可能」である必要がある理由について二重に確信が持てません。MSVC-2012
std::vector::push_back
#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
- 継承
boost::noncopyable
(またはプライベート ctor を持つ別のクラス)