>백엔드 개발 >C++ >SFINAE를 사용하여 상속된 멤버 함수를 검색하는 방법은 무엇입니까?

SFINAE를 사용하여 상속된 멤버 함수를 검색하는 방법은 무엇입니까?

Patricia Arquette
Patricia Arquette원래의
2024-11-05 13:52:02534검색

How to Detect Inherited Member Functions Using SFINAE?

상속된 멤버 함수를 검색하기 위한 SFINAE

SFINAE(Substitution Failure Is Not An Error) 기술을 사용하여 고유한 멤버 함수를 검색할 수 있습니다. 그러나 표준 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 (&amp; chk(type_check<Sig, &amp;V::foo>*))[1];
    template <typename  > static char (&amp; 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::*)(), &amp;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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.