継承されたメンバー関数を検出するための SFINAE
固有のメンバー関数は、Substitution Failure Is Not An Error (SFINAE) 手法を使用して検出できます。ただし、標準の SFINAE 実装では不十分な場合があります。この記事では、継承されたメンバー関数を検出するための回避策について説明します。
次のコードを考えてみましょう:
<code class="cpp">#include <iostream> template<typename T, typename Sig> struct has_foo { template <typename U, U> struct type_check; template <typename V> static char (& chk(type_check<Sig, &V::foo>*))[1]; template <typename > static char (& chk(...))[2]; static bool const value = (sizeof(chk<T>(0)) == 1); }; struct A { void foo(); }; struct B : A {}; int main() { using namespace std; cout << boolalpha << has_foo<A, void (A::*)()>::value << endl; // true cout << boolalpha << has_foo<B, void (B::*)()>::value << endl; // false }</code>
このコードは、SFINAE を利用してメンバー関数を検出します。ただし、B で継承されたメンバー関数の検出に失敗します。
これに対処するには、次のコードベースを使用できます:
<code class="cpp">#include <iostream> template <typename Type> class has_foo { class yes { char m;}; class no { yes m[2];}; struct BaseMixin { void foo(){} }; struct Base : public Type, public BaseMixin {}; template <typename T, T t> class Helper{}; template <typename U> static no deduce(U*, Helper<void (BaseMixin::*)(), &U::foo>* = 0); static yes deduce(...); public: static const bool result = sizeof(yes) == sizeof(deduce((Base*)(0))); }; struct A { void foo(); }; struct B : A {}; struct C {}; int main() { using namespace std; cout << boolalpha << has_foo<A>::result << endl; cout << boolalpha << has_foo<B>::result << endl; cout << boolalpha << has_foo<C>::result; }</code>
このバージョンではクラス継承を利用し、支援するヘルパー クラスを定義します。 SFINAEチェックで。結果の出力は、継承されたメンバー関数が正常に検出されたことを示しています。
以上がSFINAE を使用して継承されたメンバー関数を検出するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。