Ich versuche, eine richtlinienbasierte Host-Klasse zu schreiben (dh eine Klasse, die von ihrer Template-Klasse erbt), mit einer Wendung, wo die Policy-Klasse auch von der Templates Host-Klasse, damit sie auf ihre Typen zugreifen kann. Ein Beispiel, wo dies nützlich sein könnte, ist, wo eine Richtlinie (die wirklich wie ein Mixin verwendet wird) die Host-Klasse um eine polymorphe clone() -Methode erweitert. Hier ist ein minimales Beispiel dafür, was ich versuche zu tun:Mischen von richtlinienbasiertem Design mit CRTP in C++
template <template <class> class P>
struct Host : public P<Host<P> > {
typedef P<Host<P> > Base;
typedef Host* HostPtr;
Host(const Base& p) : Base(p) {}
};
template <class H>
struct Policy {
typedef typename H::HostPtr Hptr;
Hptr clone() const {
return Hptr(new H((Hptr)this));
}
};
Policy<Host<Policy> > p;
Host<Policy> h(p);
int main() {
return 0;
}
Dies ist leider zu kompilieren fehlschlägt, in dem, was ich scheint, wie Kreis Typen Abhängigkeit:
try.cpp: In instantiation of ‘Host<Policy>’:
try.cpp:10: instantiated from ‘Policy<Host<Policy> >’
try.cpp:16: instantiated from here
try.cpp:2: error: invalid use of incomplete type ‘struct Policy<Host<Policy> >’
try.cpp:9: error: declaration of ‘struct Policy<Host<Policy> >’
try.cpp: In constructor ‘Host<P>::Host(const P<Host<P> >&) [with P = Policy]’:
try.cpp:17: instantiated from here
try.cpp:5: error: type ‘Policy<Host<Policy> >’ is not a direct base of ‘Host<Policy>’
Wenn jemand eine beschmutzen können offensichtlicher Fehler, oder hat CRTP in Richtlinien erfolgreich gemischt, würde ich jede Hilfe schätzen.