使用する用語が正確にはわかりませんが、ここに私の例を示します。
class Base {
public:
virtual void test() = 0;
};
class Mixin {
public:
virtual void test() { }
};
class Example : public Base, public Mixin {
};
int main(int argc, char** argv) {
Example example;
example.test();
return 0;
}
Mixin
クラスに純粋仮想関数を実装したいのですBase::test
が、これをコンパイルすると、次のように表示されます。
test.cpp: In function ‘int main(int, char**)’:
test.cpp:15:13: error: cannot declare variable ‘example’ to be of abstract type ‘Example’
Example example;
^
test.cpp:11:7: note: because the following virtual functions are pure within ‘Example’:
class Example : public Base, public Mixin {
^
test.cpp:3:18: note: virtual void Base::test()
virtual void test() = 0;
^
test.cpp:16:13: error: request for member ‘test’ is ambiguous
example.test();
^
test.cpp:8:18: note: candidates are: virtual void Mixin::test()
virtual void test() { }
^
test.cpp:3:18: note: virtual void Base::test()
virtual void test() = 0;
^
using
あいまいにならないようにステートメントを追加できます。
class Example : public Base, public Mixin {
public:
using Mixin::test;
};
しかし、それは私がまだそれを実装していないと言っています:
test.cpp: In function ‘int main(int, char**)’:
test.cpp:17:13: error: cannot declare variable ‘example’ to be of abstract type ‘Example’
Example example;
^
test.cpp:11:7: note: because the following virtual functions are pure within ‘Example’:
class Example : public Base, public Mixin {
^
test.cpp:3:18: note: virtual void Base::test()
virtual void test() = 0;
^
これを行うことは可能ですか?
1 つのオプションは からMixin
継承することBase
ですが、私の場合、いくつかの派生クラスがあり、それらは共通の祖先を共有していません。