次の例では、~CImpl が正しく呼び出される可能性があるのに、クラスを移動する必要があるときに、コンパイラが不完全な型を持っていると言うのはなぜでしょうか?
Impl の宣言をヘッダーに移動すると機能するのですが、なぜデストラクタが正常に呼び出されるので、型が不完全ではないように見えますが、移動すると問題が発生します。
ファイル: C.hpp
#include <memory>
class Impl;
class C
{
public:
C();
~C();
C(C&&) = default;
C& operator=(C&&) = default;
std::unique_ptr<Impl> p;
};
ファイル C.cpp
#include "C.hpp"
#include <iostream>
using namespace std;
class Impl
{
public:
Impl() {}
virtual ~Impl() = default;
virtual void f() = 0;
};
class CImpl: public Impl
{
public:
~CImpl()
{
cout << "~CImpl()" << endl;
}
void f()
{
cout << "f()" << endl;
}
};
C::C():
p(new CImpl())
{}
C::~C()
ファイル: main.cpp
#include <iostream>
#include <vector>
#include "C.hpp"
using namespace std;
int main(int argc, char *argv[])
{
vector<C> vc;
// this won't compile
//vc.emplace_back(C());
C c;
C c2 = move(c); // this won't compile
}
コンパイラ出力:
+ clang++ -std=c++11 -Wall -c C.cpp
+ clang++ -std=c++11 -Wall -c main.cpp
In file included from main.cpp:3:
In file included from ./C.hpp:1:
In file included from /usr/bin/../lib/gcc/x86_64-linux-gnu/4.8/../../../../include/c++/4.8/memory:80:
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.8/../../../../include/c++/4.8/bits/unique_ptr.h:65:16: error: invalid application of 'sizeof' to an incomplete type 'Impl'
static_assert(sizeof(_Tp)>0,
^~~~~~~~~~~
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.8/../../../../include/c++/4.8/bits/unique_ptr.h:184:4: note: in instantiation of member function
'std::default_delete<Impl>::operator()' requested here
get_deleter()(__ptr);
^
./C.hpp:12:5: note: in instantiation of member function 'std::unique_ptr<Impl, std::default_delete<Impl> >::~unique_ptr' requested here
C(C&&) = default;
^
./C.hpp:3:7: note: forward declaration of 'Impl'
class Impl;
^
1 error generated.