जांचें कि क्या किसी वर्ग के पास दिए गए हस्ताक्षर का सदस्य कार्य है


135

मैं यह पता लगाने के लिए एक टेम्पलेट चाल के लिए पूछ रहा हूं कि क्या किसी वर्ग में किसी दिए गए हस्ताक्षर का एक विशिष्ट सदस्य कार्य है।

समस्या यहाँ उद्धृत एक के समान है। http://www.gotw.ca/gotw/071.htm लेकिन समान नहीं है: सटर की किताब के आइटम में उन्होंने इस सवाल का जवाब दिया कि एक वर्ग C MUST PROVIDE एक सदस्य फ़ंक्शन के साथ कार्य करता है एक विशेष हस्ताक्षर, अन्यथा कार्यक्रम संकलित नहीं होगा। मेरी समस्या में मुझे कुछ करने की ज़रूरत है यदि किसी वर्ग के पास यह कार्य है, तो "कुछ और" करें।

इसी तरह की समस्या को बढ़ावा देने का सामना करना पड़ा :: क्रमबद्धता लेकिन मुझे उनके द्वारा अपनाए गए समाधान पसंद नहीं है: एक टेम्पलेट फ़ंक्शन जो डिफ़ॉल्ट रूप से एक विशेष फ़ंक्शन के साथ एक नि: शुल्क फ़ंक्शन (जिसे आपको परिभाषित करना होगा) को आमंत्रित करता है जब तक कि आप किसी विशेष सदस्य फ़ंक्शन को परिभाषित नहीं करते हैं ( उनके मामले में "क्रमबद्ध करें" जो किसी विशेष हस्ताक्षर के साथ दिए गए प्रकार के 2 मापदंडों को लेता है), अन्यथा एक संकलित त्रुटि होगी। यानी घुसपैठ और गैर-घुसपैठ दोनों को ही लागू करना।

मुझे वह समाधान दो कारणों से पसंद नहीं है:

  1. गैर दखल देने के लिए आपको वैश्विक "क्रमबद्ध" फ़ंक्शन को ओवरराइड करना चाहिए जो कि :: क्रमबद्धता नामस्थान में है, इसलिए आपके पास नाम सूची को बढ़ाने और नामस्थान क्रमांकन को खोलने के लिए आपके ग्राहक कोड में है!
  2. उस गड़बड़ को हल करने के लिए स्टैक 10 से 12 फ़ंक्शन इनवोकेशन था।

मुझे उन वर्गों के लिए एक कस्टम व्यवहार को परिभाषित करने की आवश्यकता है जो उस सदस्य फ़ंक्शन के पास नहीं हैं, और मेरी इकाइयां अलग-अलग नामस्थानों के अंदर हैं (और मैं एक नामस्थान में परिभाषित एक वैश्विक फ़ंक्शन को ओवरराइड नहीं करना चाहता, जबकि मैं दूसरे में हूं)

क्या आप मुझे इस पहेली को हल करने का संकेत दे सकते हैं?



@ R.MartinhoFernandes आप किस तरह के उत्तर की तलाश कर रहे हैं? माइक किंगान का यह जवाब काफी गहराई तक जाता है और C ++ 11 सामान का उपयोग कर रहा है।
ज्रोक

@ R.MartinhoFernandes शायद यह आधुनिक संस्करण है जिसे आप खोज रहे हैं?
डेनियल फ्रेडी

जवाबों:


90

मुझे यकीन नहीं है कि अगर मैं आपको सही तरीके से समझता हूं, लेकिन आप संकलन समय पर फ़ंक्शन की उपस्थिति का पता लगाने के लिए SFINAE का शोषण कर सकते हैं। मेरे कोड से उदाहरण (परीक्षण यदि वर्ग में सदस्य फ़ंक्शन size_t used_memory () कॉन्स्ट) है।

template<typename T>
struct HasUsedMemoryMethod
{
    template<typename U, size_t (U::*)() const> struct SFINAE {};
    template<typename U> static char Test(SFINAE<U, &U::used_memory>*);
    template<typename U> static int Test(...);
    static const bool Has = sizeof(Test<T>(0)) == sizeof(char);
};

template<typename TMap>
void ReportMemUsage(const TMap& m, std::true_type)
{
        // We may call used_memory() on m here.
}
template<typename TMap>
void ReportMemUsage(const TMap&, std::false_type)
{
}
template<typename TMap>
void ReportMemUsage(const TMap& m)
{
    ReportMemUsage(m, 
        std::integral_constant<bool, HasUsedMemoryMethod<TMap>::Has>());
}

14
wtf ये है ??? क्या यह कानूनी सी ++ कोड है ?? क्या आप "टेम्पलेट <टाइपनेम U, size_t (U :: *) () कॉन्स्ट>" लिख सकते हैं ?? लेकिन ... यह एक महान और नया समाधान है! मैं आपको धन्यवाद देता हूं, मैं अपने कलिग्स के साथ बेहतर कल का विश्लेषण करूंगा ... महान!
ugasoft

2
उदाहरण 'int_to_type' की परिभाषा याद कर रहा है। जाहिर है कि यह जवाब में नहीं जुड़ता है, लेकिन इसका मतलब यह है कि लोग त्वरित कोड और पेस्ट के बाद आपके कोड को कार्रवाई में देख सकते हैं।
रिचर्ड कॉर्डन

2
Int_to_type की एक सरल परिभाषा हो सकती है: 'टेम्पलेट <int N> संरचना int_to_type {}।'। कई कार्यान्वयन पैरामीटर एन मान को या तो एक एनम में रखते हैं या फिर स्थिर पूर्णांक स्थिरांक में (टेम्पलेट <int n> संरचना int_to_type {enum {value = N};}; / टेम्पलेट <int N> संरचना int_to_type {स्थिर कॉन्स्टेंस इंट = =; एन;})
डेविड रोड्रिगेज -

2
सीधे तौर पर बढ़ावा दें: int_to_type के बजाय इंटीग्रल_कंस्टेंट।
वादीम फेरडर

2
@JohanLundberg यह एक सूचक-से- (गैर-स्थैतिक-) सदस्य-कार्य है। उदाहरण के लिए, size_t(std::vector::*p)() = &std::vector::size;
मोनिका

133

यहां C ++ 11 सुविधाओं पर निर्भर कार्यान्वयन संभव है। यह सही ढंग से फ़ंक्शन का पता लगाता है, भले ही यह विरासत में मिला हो (स्वीकृत उत्तर में समाधान के विपरीत, जैसा कि माइक किंगान ने अपने उत्तर में देखा है )।

इस स्निपेट परीक्षण के कार्य को कहा जाता है serialize:

#include <type_traits>

// Primary template with a static assertion
// for a meaningful error message
// if it ever gets instantiated.
// We could leave it undefined if we didn't care.

template<typename, typename T>
struct has_serialize {
    static_assert(
        std::integral_constant<T, false>::value,
        "Second template parameter needs to be of function type.");
};

// specialization that does the checking

template<typename C, typename Ret, typename... Args>
struct has_serialize<C, Ret(Args...)> {
private:
    template<typename T>
    static constexpr auto check(T*)
    -> typename
        std::is_same<
            decltype( std::declval<T>().serialize( std::declval<Args>()... ) ),
            Ret    // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        >::type;  // attempt to call it and see if the return type is correct

    template<typename>
    static constexpr std::false_type check(...);

    typedef decltype(check<C>(0)) type;

public:
    static constexpr bool value = type::value;
};

उपयोग:

struct X {
     int serialize(const std::string&) { return 42; } 
};

struct Y : X {};

std::cout << has_serialize<Y, int(const std::string&)>::value; // will print 1

क्या यह काम करता है यदि Y में "क्रमबद्ध" नामक विधि नहीं है? मैं यह नहीं देखता कि यदि विधि "सीरियलाइज़" मौजूद नहीं है तो यह एक गलत मान कैसे लौटाएगा।
कॉलिन

1
@ उस मामले में टेम्पलेट पैरामीटर का प्रतिस्थापन चेक के पहले अधिभार के लिए विफल रहता है और यह ओवरलोड सेट से खारिज कर दिया जाता है। यह दूसरे नंबर पर वापस आता है जो असत्य बोलता है। यह एक संकलक त्रुटि नहीं है क्योंकि SFINAE सिद्धांत।
7

1
@ elios264 वहाँ नहीं है। आप प्रत्येक फ़ंक्शन के लिए एक टेम्पलेट लिखने के लिए एक मैक्रो का उपयोग कर सकते हैं जिसे आप जांचना चाहते हैं।
jrok

1
कोई विशेष कारण कि चेक का तर्क टी या टी के बजाय टाइप टी * का है?
शिबूमी

1
लेकिन क्या होगा अगर serializeखुद एक टेम्पलेट को स्वीकार करता है। क्या serializeसटीक प्रकार टाइप किए बिना अस्तित्व के लिए परीक्षण करने का एक तरीका है ?
हाय-एंजेल

37

संकलन सदस्य-कार्य आत्मनिरीक्षण के इस प्रश्न का स्वीकृत उत्तर, हालांकि यह उचित रूप से लोकप्रिय है, इसमें एक रोड़ा है जिसे निम्नलिखित कार्यक्रम में देखा जा सकता है:

#include <type_traits>
#include <iostream>
#include <memory>

/*  Here we apply the accepted answer's technique to probe for the
    the existence of `E T::operator*() const`
*/
template<typename T, typename E>
struct has_const_reference_op
{
    template<typename U, E (U::*)() const> struct SFINAE {};
    template<typename U> static char Test(SFINAE<U, &U::operator*>*);
    template<typename U> static int Test(...);
    static const bool value = sizeof(Test<T>(0)) == sizeof(char);
};

using namespace std;

/* Here we test the `std::` smart pointer templates, including the
    deprecated `auto_ptr<T>`, to determine in each case whether
    T = (the template instantiated for `int`) provides 
    `int & T::operator*() const` - which all of them in fact do.
*/ 
int main(void)
{
    cout << has_const_reference_op<auto_ptr<int>,int &>::value;
    cout << has_const_reference_op<unique_ptr<int>,int &>::value;
    cout << has_const_reference_op<shared_ptr<int>,int &>::value << endl;
    return 0;
}

जीसीसी 4.6.3 के साथ बनाया गया है, कार्यक्रम आउटपुट 110- हमें बताए कि T = std::shared_ptr<int>है नहीं प्रदान करते हैं int & T::operator*() const

यदि आप इस गोच में पहले से ही समझदार नहीं हैं, तो std::shared_ptr<T>हेडर की परिभाषा पर एक नज़र <memory>प्रकाश डालेगी। उस कार्यान्वयन में, std::shared_ptr<T>एक आधार वर्ग से लिया गया है जिसमें से यह विरासत में मिला है operator*() const। तो टेम्पलेट इन्स्टेन्शियशन SFINAE<U, &U::operator*>कि गठन के लिए ऑपरेटर "की खोज" U = std::shared_ptr<T>, नहीं होगा क्योंकि std::shared_ptr<T>कोई है operator*()अपने आप में और टेम्पलेट इन्स्टेन्शियशन नहीं "विरासत करना" है।

यह रोड़ा "ज्ञात आकार () ट्रिक" का उपयोग करते हुए, केवल Tकुछ सदस्य फ़ंक्शन का पता लगाने के लिए, प्रसिद्ध SFINAE दृष्टिकोण को प्रभावित नहीं करता है mf(उदाहरण के लिए यह उत्तर और टिप्पणियां देखें)। लेकिन यह स्थापित T::mfकरना अक्सर मौजूद होता है (आमतौर पर?) पर्याप्त अच्छा नहीं है: आपको यह भी स्थापित करने की आवश्यकता हो सकती है कि इसमें एक वांछित हस्ताक्षर है। यह वह जगह है जहाँ सचित्र तकनीक स्कोर है। वांछित हस्ताक्षर का सूचक संस्करण एक टेम्पलेट प्रकार के पैरामीटर में खुदा हुआ है जिसे &T::mfसफल होने के लिए SFINAE जांच के लिए संतुष्ट होना चाहिए । लेकिन यह टेम्प्लेट इंस्टेंटिंग तकनीक T::mfविरासत में मिलने पर गलत उत्तर देती है।

जीवन भर आत्मनिरीक्षण के लिए एक सुरक्षित SFINAE तकनीक एक प्रकार के तर्क T::mfके उपयोग से बचना चाहिए &T::mf, जिस पर SFINAE फ़ंक्शन टेम्पलेट रिज़ॉल्यूशन निर्भर करता है। इसके बजाय, SFINAE टेम्पलेट फ़ंक्शन रिज़ॉल्यूशन ओवरलोडेड SFINAE जांच फ़ंक्शन के तर्क प्रकार के रूप में उपयोग किए जाने वाले सटीक प्रकार के घोषणाओं पर निर्भर कर सकता है।

सवाल यह है कि इस बाधा का पालन करता है मैं के compiletime पता लगाने के लिए उदाहरण देकर स्पष्ट कर देंगे करने के लिए एक जवाब के माध्यम से E T::operator*() constमनमाना के लिए, Tऔर E। एक ही पैटर्न किसी अन्य सदस्य विधि हस्ताक्षर के लिए जांच करने के लिए उत्परिवर्ती उत्परिवर्तन लागू करेगा ।

#include <type_traits>

/*! The template `has_const_reference_op<T,E>` exports a
    boolean constant `value that is true iff `T` provides
    `E T::operator*() const`
*/ 
template< typename T, typename E>
struct has_const_reference_op
{
    /* SFINAE operator-has-correct-sig :) */
    template<typename A>
    static std::true_type test(E (A::*)() const) {
        return std::true_type();
    }

    /* SFINAE operator-exists :) */
    template <typename A> 
    static decltype(test(&A::operator*)) 
    test(decltype(&A::operator*),void *) {
        /* Operator exists. What about sig? */
        typedef decltype(test(&A::operator*)) return_type; 
        return return_type();
    }

    /* SFINAE game over :( */
    template<typename A>
    static std::false_type test(...) {
        return std::false_type(); 
    }

    /* This will be either `std::true_type` or `std::false_type` */
    typedef decltype(test<T>(0,0)) type;

    static const bool value = type::value; /* Which is it? */
};

इस समाधान में, अधिभार SFINAE जांच फ़ंक्शन test()"पुनरावर्ती रूप से लागू किया गया" है। (बेशक यह वास्तव में बिल्कुल नहीं लगाया गया है; इसमें केवल संकलक द्वारा हल किए गए काल्पनिक चालान के रिटर्न प्रकार हैं।)

हमें कम से कम एक और अधिकतम दो बिंदुओं पर जानकारी के लिए जांच करने की आवश्यकता है:

  • करता है T::operator*()सब पर मौजूद हैं? यदि नहीं, तो हम कर रहे हैं।
  • यह देखते हुए कि T::operator*()क्या इसके हस्ताक्षर मौजूद हैं E T::operator*() const?

हम एकल कॉल के रिटर्न प्रकार का मूल्यांकन करके उत्तर प्राप्त करते हैं test(0,0)। इसके द्वारा किया जाता है:

    typedef decltype(test<T>(0,0)) type;

यह कॉल /* SFINAE operator-exists :) */ओवरलोड का समाधान हो सकता है test(), या यह ओवरलोड का समाधान हो सकता है /* SFINAE game over :( */। यह /* SFINAE operator-has-correct-sig :) */अधिभार को हल नहीं कर सकता है , क्योंकि एक को सिर्फ एक तर्क की उम्मीद है और हम दो को पारित कर रहे हैं।

हम दो क्यों गुजर रहे हैं? केवल प्रस्ताव को बाहर करने के लिए मजबूर करने के लिए /* SFINAE operator-has-correct-sig :) */। दूसरे तर्क का कोई अन्य लक्षण नहीं है।

यह कॉल केवल उस स्थिति में test(0,0)हल होगी /* SFINAE operator-exists :) */जब पहला तर्क 0 उस अधिभार के पहले पैरामीटर प्रकार को संतृप्त करता है, जो कि decltype(&A::operator*), के साथ है A = T। 0 केवल उस स्थिति में संतुष्ट होगा जैसे मामला T::operator*मौजूद है।

मान लीजिए कि कंपाइलर ने हां को हां कहा है। फिर यह साथ जा रहा है /* SFINAE operator-exists :) */और इसे फ़ंक्शन कॉल के रिटर्न प्रकार को निर्धारित करने की आवश्यकता है, जो उस स्थिति में है decltype(test(&A::operator*))- अभी तक किसी अन्य कॉल का रिटर्न प्रकार test()

इस बार, हम केवल एक तर्क दे &A::operator*रहे हैं, जिसे अब हम जानते हैं कि हम मौजूद हैं, या हम यहाँ नहीं होंगे। एक कॉल test(&A::operator*)या तो /* SFINAE operator-has-correct-sig :) */फिर से हल हो सकती है या फिर हल हो सकती है /* SFINAE game over :( */। कॉल से मेल खाएगी /* SFINAE operator-has-correct-sig :) */सिर्फ मामले में &A::operator*है कि अधिभार है, जिनमें से एक पैरामीटर प्रकार को संतुष्ट करता है E (A::*)() constके साथ, A = T

कंपाइलर यहां हां कहेगा यदि T::operator*उसके पास वांछित हस्ताक्षर हैं, और फिर फिर से अधिभार के प्रकार का मूल्यांकन करना होगा। अब और नहीं "पुनरावर्तन": यह है std::true_type

यदि कंपाइलर /* SFINAE operator-exists :) */कॉल के लिए test(0,0)चयन नहीं करता है या कॉल के लिए नहीं चुनता है , तो किसी भी स्थिति में यह साथ जाता है और अंतिम रिटर्न प्रकार होता है ।/* SFINAE operator-has-correct-sig :) */test(&A::operator*)/* SFINAE game over :( */std::false_type

यहां एक परीक्षण कार्यक्रम है जो विभिन्न मामलों के नमूने (जीसीसी 4.6.3 फिर से) में अपेक्षित उत्तरों का निर्माण करने वाले टेम्पलेट को दिखाता है।

// To test
struct empty{};

// To test 
struct int_ref
{
    int & operator*() const {
        return *_pint;
    }
    int & foo() const {
        return *_pint;
    }
    int * _pint;
};

// To test 
struct sub_int_ref : int_ref{};

// To test 
template<typename E>
struct ee_ref
{
    E & operator*() {
        return *_pe;
    }
    E & foo() const {
        return *_pe;
    }
    E * _pe;
};

// To test 
struct sub_ee_ref : ee_ref<char>{};

using namespace std;

#include <iostream>
#include <memory>
#include <vector>

int main(void)
{
    cout << "Expect Yes" << endl;
    cout << has_const_reference_op<auto_ptr<int>,int &>::value;
    cout << has_const_reference_op<unique_ptr<int>,int &>::value;
    cout << has_const_reference_op<shared_ptr<int>,int &>::value;
    cout << has_const_reference_op<std::vector<int>::iterator,int &>::value;
    cout << has_const_reference_op<std::vector<int>::const_iterator,
            int const &>::value;
    cout << has_const_reference_op<int_ref,int &>::value;
    cout << has_const_reference_op<sub_int_ref,int &>::value  << endl;
    cout << "Expect No" << endl;
    cout << has_const_reference_op<int *,int &>::value;
    cout << has_const_reference_op<unique_ptr<int>,char &>::value;
    cout << has_const_reference_op<unique_ptr<int>,int const &>::value;
    cout << has_const_reference_op<unique_ptr<int>,int>::value;
    cout << has_const_reference_op<unique_ptr<long>,int &>::value;
    cout << has_const_reference_op<int,int>::value;
    cout << has_const_reference_op<std::vector<int>,int &>::value;
    cout << has_const_reference_op<ee_ref<int>,int &>::value;
    cout << has_const_reference_op<sub_ee_ref,int &>::value;
    cout << has_const_reference_op<empty,int &>::value  << endl;
    return 0;
}

क्या इस विचार में नई खामियां हैं? क्या यह एक बार फिर गिरने से बचने के लिए अधिक सामान्य हो सकता है?


16

यहाँ कुछ उपयोग स्निपेट दिए गए हैं: * इस सब के लिए हिम्मत कम है

xकिसी दिए गए वर्ग में सदस्य के लिए जाँच करें । Var, func, class, Union या enum हो सकता है:

CREATE_MEMBER_CHECK(x);
bool has_x = has_member_x<class_to_check_for_x>::value;

सदस्य समारोह के लिए जाँच करें void x():

//Func signature MUST have T as template variable here... simpler this way :\
CREATE_MEMBER_FUNC_SIG_CHECK(x, void (T::*)(), void__x);
bool has_func_sig_void__x = has_member_func_void__x<class_to_check_for_x>::value;

सदस्य चर के लिए जाँच करें x:

CREATE_MEMBER_VAR_CHECK(x);
bool has_var_x = has_member_var_x<class_to_check_for_x>::value;

सदस्य वर्ग के लिए जाँच करें x:

CREATE_MEMBER_CLASS_CHECK(x);
bool has_class_x = has_member_class_x<class_to_check_for_x>::value;

सदस्य संघ के लिए जाँच करें x:

CREATE_MEMBER_UNION_CHECK(x);
bool has_union_x = has_member_union_x<class_to_check_for_x>::value;

सदस्य enum के लिए जाँच करें x:

CREATE_MEMBER_ENUM_CHECK(x);
bool has_enum_x = has_member_enum_x<class_to_check_for_x>::value;

xहस्ताक्षर की परवाह किए बिना किसी भी सदस्य समारोह के लिए जाँच करें :

CREATE_MEMBER_CHECK(x);
CREATE_MEMBER_VAR_CHECK(x);
CREATE_MEMBER_CLASS_CHECK(x);
CREATE_MEMBER_UNION_CHECK(x);
CREATE_MEMBER_ENUM_CHECK(x);
CREATE_MEMBER_FUNC_CHECK(x);
bool has_any_func_x = has_member_func_x<class_to_check_for_x>::value;

या

CREATE_MEMBER_CHECKS(x);  //Just stamps out the same macro calls as above.
bool has_any_func_x = has_member_func_x<class_to_check_for_x>::value;

विवरण और कोर:

/*
    - Multiple inheritance forces ambiguity of member names.
    - SFINAE is used to make aliases to member names.
    - Expression SFINAE is used in just one generic has_member that can accept
      any alias we pass it.
*/

//Variadic to force ambiguity of class members.  C++11 and up.
template <typename... Args> struct ambiguate : public Args... {};

//Non-variadic version of the line above.
//template <typename A, typename B> struct ambiguate : public A, public B {};

template<typename A, typename = void>
struct got_type : std::false_type {};

template<typename A>
struct got_type<A> : std::true_type {
    typedef A type;
};

template<typename T, T>
struct sig_check : std::true_type {};

template<typename Alias, typename AmbiguitySeed>
struct has_member {
    template<typename C> static char ((&f(decltype(&C::value))))[1];
    template<typename C> static char ((&f(...)))[2];

    //Make sure the member name is consistently spelled the same.
    static_assert(
        (sizeof(f<AmbiguitySeed>(0)) == 1)
        , "Member name specified in AmbiguitySeed is different from member name specified in Alias, or wrong Alias/AmbiguitySeed has been specified."
    );

    static bool const value = sizeof(f<Alias>(0)) == 2;
};

मैक्रोज़ (एल डियाब्लो!):

CREATE_MEMBER_CHECK:

//Check for any member with given name, whether var, func, class, union, enum.
#define CREATE_MEMBER_CHECK(member)                                         \
                                                                            \
template<typename T, typename = std::true_type>                             \
struct Alias_##member;                                                      \
                                                                            \
template<typename T>                                                        \
struct Alias_##member <                                                     \
    T, std::integral_constant<bool, got_type<decltype(&T::member)>::value>  \
> { static const decltype(&T::member) value; };                             \
                                                                            \
struct AmbiguitySeed_##member { char member; };                             \
                                                                            \
template<typename T>                                                        \
struct has_member_##member {                                                \
    static const bool value                                                 \
        = has_member<                                                       \
            Alias_##member<ambiguate<T, AmbiguitySeed_##member>>            \
            , Alias_##member<AmbiguitySeed_##member>                        \
        >::value                                                            \
    ;                                                                       \
}

CREATE_MEMBER_VAR_CHECK:

//Check for member variable with given name.
#define CREATE_MEMBER_VAR_CHECK(var_name)                                   \
                                                                            \
template<typename T, typename = std::true_type>                             \
struct has_member_var_##var_name : std::false_type {};                      \
                                                                            \
template<typename T>                                                        \
struct has_member_var_##var_name<                                           \
    T                                                                       \
    , std::integral_constant<                                               \
        bool                                                                \
        , !std::is_member_function_pointer<decltype(&T::var_name)>::value   \
    >                                                                       \
> : std::true_type {}

CREATE_MEMBER_FUNC_SIG_CHECK:

//Check for member function with given name AND signature.
#define CREATE_MEMBER_FUNC_SIG_CHECK(func_name, func_sig, templ_postfix)    \
                                                                            \
template<typename T, typename = std::true_type>                             \
struct has_member_func_##templ_postfix : std::false_type {};                \
                                                                            \
template<typename T>                                                        \
struct has_member_func_##templ_postfix<                                     \
    T, std::integral_constant<                                              \
        bool                                                                \
        , sig_check<func_sig, &T::func_name>::value                         \
    >                                                                       \
> : std::true_type {}

CREATE_MEMBER_CLASS_CHECK:

//Check for member class with given name.
#define CREATE_MEMBER_CLASS_CHECK(class_name)               \
                                                            \
template<typename T, typename = std::true_type>             \
struct has_member_class_##class_name : std::false_type {};  \
                                                            \
template<typename T>                                        \
struct has_member_class_##class_name<                       \
    T                                                       \
    , std::integral_constant<                               \
        bool                                                \
        , std::is_class<                                    \
            typename got_type<typename T::class_name>::type \
        >::value                                            \
    >                                                       \
> : std::true_type {}

CREATE_MEMBER_UNION_CHECK:

//Check for member union with given name.
#define CREATE_MEMBER_UNION_CHECK(union_name)               \
                                                            \
template<typename T, typename = std::true_type>             \
struct has_member_union_##union_name : std::false_type {};  \
                                                            \
template<typename T>                                        \
struct has_member_union_##union_name<                       \
    T                                                       \
    , std::integral_constant<                               \
        bool                                                \
        , std::is_union<                                    \
            typename got_type<typename T::union_name>::type \
        >::value                                            \
    >                                                       \
> : std::true_type {}

CREATE_MEMBER_ENUM_CHECK:

//Check for member enum with given name.
#define CREATE_MEMBER_ENUM_CHECK(enum_name)                 \
                                                            \
template<typename T, typename = std::true_type>             \
struct has_member_enum_##enum_name : std::false_type {};    \
                                                            \
template<typename T>                                        \
struct has_member_enum_##enum_name<                         \
    T                                                       \
    , std::integral_constant<                               \
        bool                                                \
        , std::is_enum<                                     \
            typename got_type<typename T::enum_name>::type  \
        >::value                                            \
    >                                                       \
> : std::true_type {}

CREATE_MEMBER_FUNC_CHECK:

//Check for function with given name, any signature.
#define CREATE_MEMBER_FUNC_CHECK(func)          \
template<typename T>                            \
struct has_member_func_##func {                 \
    static const bool value                     \
        = has_member_##func<T>::value           \
        && !has_member_var_##func<T>::value     \
        && !has_member_class_##func<T>::value   \
        && !has_member_union_##func<T>::value   \
        && !has_member_enum_##func<T>::value    \
    ;                                           \
}

CREATE_MEMBER_CHECKS:

//Create all the checks for one member.  Does NOT include func sig checks.
#define CREATE_MEMBER_CHECKS(member)    \
CREATE_MEMBER_CHECK(member);            \
CREATE_MEMBER_VAR_CHECK(member);        \
CREATE_MEMBER_CLASS_CHECK(member);      \
CREATE_MEMBER_UNION_CHECK(member);      \
CREATE_MEMBER_ENUM_CHECK(member);       \
CREATE_MEMBER_FUNC_CHECK(member)

1
यह भी खूब रही; इसे एक ही हेडर फ़ाइल लाइब्रेरी में रखना अच्छा होगा।
एलन

12

यह पर्याप्त होना चाहिए, यदि आप उस सदस्य फ़ंक्शन का नाम जानते हैं जो आप अपेक्षा कर रहे हैं। (इस मामले में, यदि कोई सदस्य फ़ंक्शन नहीं है, तो फ़ंक्शन bla तुरंत समाप्त होने में विफल रहता है (वैसे भी काम करना कठिन है क्योंकि फ़ंक्शन आंशिक विशेषज्ञता की कमी है। आपको कक्षा टेम्पलेट्स का उपयोग करने की आवश्यकता हो सकती है), इसके अलावा, सक्षम संरचना ( enable_if के समान है) जिसे आप सदस्य के रूप में रखना चाहते हैं, उस प्रकार के फ़ंक्शन पर भी टेम्प्लेट किया जा सकता है।

template <typename T, int (T::*) ()> struct enable { typedef T type; };
template <typename T> typename enable<T, &T::i>::type bla (T&);
struct A { void i(); };
struct B { int i(); };
int main()
{
  A a;
  B b;
  bla(b);
  bla(a);
}

4
thaks! यह yrp द्वारा प्रस्तावित समाधान के समान है। मुझे नहीं पता था कि टेम्पलेट को सदस्य कार्यों से अधिक किया जा सकता है। यह एक नई सुविधा है जिसे मैंने आज सीखा है! ... और एक नया सबक: "कभी न कहें कि आप c ++ के विशेषज्ञ हैं" :)
ugasoft

7

यहाँ माइक Kinghan के जवाब पर एक सरल ले रहा है। यह विरासत में मिली विधियों का पता लगाएगा। यह सटीक हस्ताक्षर के लिए भी जांच करेगा (जर्क के दृष्टिकोण के विपरीत जो तर्क रूपांतरण की अनुमति देता है)।

template <class C>
class HasGreetMethod
{
    template <class T>
    static std::true_type testSignature(void (T::*)(const char*) const);

    template <class T>
    static decltype(testSignature(&T::greet)) test(std::nullptr_t);

    template <class T>
    static std::false_type test(...);

public:
    using type = decltype(test<C>(nullptr));
    static const bool value = type::value;
};

struct A { void greet(const char* name) const; };
struct Derived : A { };
static_assert(HasGreetMethod<Derived>::value, "");

चल उदाहरण


यह अच्छा है, लेकिन यह काम नहीं करेगा यदि फ़ंक्शन कोई तर्क नहीं लेता है
ट्राइसेल्डीयन

यह बहुत अच्छा काम करता है। मुझे कोई तर्क नहीं लेने वाले सदस्य कार्यों के लिए इस ट्रिक को लागू करने में कोई समस्या नहीं हुई।
जॉन बी.बी.

यह ओवरलोड के साथ और वंशानुक्रम के साथ और usingआधार वर्ग से अधिभार लाने के उपयोग के साथ कई और कोई विधि तर्क के साथ मेरे लिए अच्छी तरह से काम करता है । यह मेरे लिए MSVC 2015 और क्लैंग-सीएल के साथ काम करता है। यह हालांकि MSVC 2012 के साथ काम नहीं करता है।
स्टीव

5

आप std :: is_member_function_pointer का उपयोग कर सकते हैं

class A {
   public:
     void foo() {};
}

 bool test = std::is_member_function_pointer<decltype(&A::foo)>::value;

16
नहीं होगा &A::fooएक संकलन त्रुटि हो, तो कोई हो fooके सभी पर A? मैं मूल प्रश्न को किसी भी इनपुट वर्ग के साथ काम करने के रूप में पढ़ता हूं, न कि केवल उन लोगों के पास जिनका नाम किसी प्रकार का है foo
जेफ वाल्डेन

5

स्वयं इस तरह की समस्या के साथ आया था, और यहां प्रस्तावित समाधानों को बहुत दिलचस्प पाया ... लेकिन एक समाधान की आवश्यकता थी:

  1. विरासत में मिले कार्यों का भी पता लगाता है;
  2. गैर सी + + 11 तैयार संकलक के साथ संगत है (इसलिए कोई घोषणा नहीं)

BOOST चर्चा के आधार पर इस तरह का प्रस्ताव रखने वाला एक और सूत्र मिला । यहां प्रस्तावित समाधान का सामान्यीकरण है, विशेषता वर्ग के लिए दो मैक्रोज़ घोषणा के रूप में, बढ़ावा देने के मॉडल के बाद :: has_ ​​* कक्षाएं।

#include <boost/type_traits/is_class.hpp>
#include <boost/mpl/vector.hpp>

/// Has constant function
/** \param func_ret_type Function return type
    \param func_name Function name
    \param ... Variadic arguments are for the function parameters
*/
#define DECLARE_TRAITS_HAS_FUNC_C(func_ret_type, func_name, ...) \
    __DECLARE_TRAITS_HAS_FUNC(1, func_ret_type, func_name, ##__VA_ARGS__)

/// Has non-const function
/** \param func_ret_type Function return type
    \param func_name Function name
    \param ... Variadic arguments are for the function parameters
*/
#define DECLARE_TRAITS_HAS_FUNC(func_ret_type, func_name, ...) \
    __DECLARE_TRAITS_HAS_FUNC(0, func_ret_type, func_name, ##__VA_ARGS__)

// Traits content
#define __DECLARE_TRAITS_HAS_FUNC(func_const, func_ret_type, func_name, ...)  \
    template                                                                  \
    <   typename Type,                                                        \
        bool is_class = boost::is_class<Type>::value                          \
    >                                                                         \
    class has_func_ ## func_name;                                             \
    template<typename Type>                                                   \
    class has_func_ ## func_name<Type,false>                                  \
    {public:                                                                  \
        BOOST_STATIC_CONSTANT( bool, value = false );                         \
        typedef boost::false_type type;                                       \
    };                                                                        \
    template<typename Type>                                                   \
    class has_func_ ## func_name<Type,true>                                   \
    {   struct yes { char _foo; };                                            \
        struct no { yes _foo[2]; };                                           \
        struct Fallback                                                       \
        {   func_ret_type func_name( __VA_ARGS__ )                            \
                UTILITY_OPTIONAL(func_const,const) {}                         \
        };                                                                    \
        struct Derived : public Type, public Fallback {};                     \
        template <typename T, T t>  class Helper{};                           \
        template <typename U>                                                 \
        static no deduce(U*, Helper                                           \
            <   func_ret_type (Fallback::*)( __VA_ARGS__ )                    \
                    UTILITY_OPTIONAL(func_const,const),                       \
                &U::func_name                                                 \
            >* = 0                                                            \
        );                                                                    \
        static yes deduce(...);                                               \
    public:                                                                   \
        BOOST_STATIC_CONSTANT(                                                \
            bool,                                                             \
            value = sizeof(yes)                                               \
                == sizeof( deduce( static_cast<Derived*>(0) ) )               \
        );                                                                    \
        typedef ::boost::integral_constant<bool,value> type;                  \
        BOOST_STATIC_CONSTANT(bool, is_const = func_const);                   \
        typedef func_ret_type return_type;                                    \
        typedef ::boost::mpl::vector< __VA_ARGS__ > args_type;                \
    }

// Utility functions
#define UTILITY_OPTIONAL(condition, ...) UTILITY_INDIRECT_CALL( __UTILITY_OPTIONAL_ ## condition , ##__VA_ARGS__ )
#define UTILITY_INDIRECT_CALL(macro, ...) macro ( __VA_ARGS__ )
#define __UTILITY_OPTIONAL_0(...)
#define __UTILITY_OPTIONAL_1(...) __VA_ARGS__

ये मैक्रोज़ निम्नलिखित प्रोटोटाइप के साथ एक विशेषता वर्ग का विस्तार करते हैं:

template<class T>
class has_func_[func_name]
{
public:
    /// Function definition result value
    /** Tells if the tested function is defined for type T or not.
    */
    static const bool value = true | false;

    /// Function definition result type
    /** Type representing the value attribute usable in
        http://www.boost.org/doc/libs/1_53_0/libs/utility/enable_if.html
    */
    typedef boost::integral_constant<bool,value> type;

    /// Tested function constness indicator
    /** Indicates if the tested function is const or not.
        This value is not deduced, it is forced depending
        on the user call to one of the traits generators.
    */
    static const bool is_const = true | false;

    /// Tested function return type
    /** Indicates the return type of the tested function.
        This value is not deduced, it is forced depending
        on the user's arguments to the traits generators.
    */
    typedef func_ret_type return_type;

    /// Tested function arguments types
    /** Indicates the arguments types of the tested function.
        This value is not deduced, it is forced depending
        on the user's arguments to the traits generators.
    */
    typedef ::boost::mpl::vector< __VA_ARGS__ > args_type;
};

तो इसका एक विशिष्ट उपयोग क्या हो सकता है?

// We enclose the traits class into
// a namespace to avoid collisions
namespace ns_0 {
    // Next line will declare the traits class
    // to detect the member function void foo(int,int) const
    DECLARE_TRAITS_HAS_FUNC_C(void, foo, int, int);
}

// we can use BOOST to help in using the traits
#include <boost/utility/enable_if.hpp>

// Here is a function that is active for types
// declaring the good member function
template<typename T> inline
typename boost::enable_if< ns_0::has_func_foo<T> >::type
foo_bar(const T &_this_, int a=0, int b=1)
{   _this_.foo(a,b);
}

// Here is a function that is active for types
// NOT declaring the good member function
template<typename T> inline
typename boost::disable_if< ns_0::has_func_foo<T> >::type
foo_bar(const T &_this_, int a=0, int b=1)
{   default_foo(_this_,a,b);
}

// Let us declare test types
struct empty
{
};
struct direct_foo
{
    void foo(int,int);
};
struct direct_const_foo
{
    void foo(int,int) const;
};
struct inherited_const_foo :
    public direct_const_foo
{
};

// Now anywhere in your code you can seamlessly use
// the foo_bar function on any object:
void test()
{
    int a;
    foo_bar(a); // calls default_foo

    empty b;
    foo_bar(b); // calls default_foo

    direct_foo c;
    foo_bar(c); // calls default_foo (member function is not const)

    direct_const_foo d;
    foo_bar(d); // calls d.foo (member function is const)

    inherited_const_foo e;
    foo_bar(e); // calls e.foo (inherited member function)
}

5

इसे पूरा करने के लिए हमें उपयोग करने की आवश्यकता होगी:

  1. विधि उपलब्ध है या नहीं, इसके अनुसार भिन्न रिटर्न प्रकारों के साथ फ़ंक्शन टेम्पलेट ओवरलोडिंग
  2. type_traitsशीर्ष लेख में मेटा-कंडीशंस को ध्यान में रखते हुए , हम या तो वापस लौटना चाहेंगेtrue_typefalse_type अपने ओवरलोड से
  3. घोषित true_typeएक उम्मीद अधिभार intऔर false_type: अधिभार variadic पैरामीटर उम्मीद फायदा उठाने के लिए "अधिभार संकल्प में अंडाकार रूपांतरण की सबसे कम प्राथमिकता"
  4. true_typeफंक्शन के लिए टेम्प्लेट विनिर्देशन को परिभाषित करने में हम उपयोग करेंगे declvalऔर decltypeहमें फंक्शन का पता लगाने के लिए अनुमति देंगे।

आप इस का लाइव उदाहरण देख सकते हैं यहांलेकिन मैं इसे नीचे भी समझाऊंगा:

मैं एक फ़ंक्शन के अस्तित्व की जांच करना चाहता हूं, जिसका नाम testएक प्रकार से परिवर्तनीय है int, फिर मुझे इन दो कार्यों को घोषित करने की आवश्यकता होगी:

template <typename T, typename S = decltype(declval<T>().test(declval<int>))> static true_type hasTest(int);
template <typename T> static false_type hasTest(...);
  • decltype(hasTest<a>(0))::valueहै true(ध्यान दें वहाँ से निपटने के लिए विशेष कार्यक्षमता बनाने के लिए कोई जरूरत नहीं है void a::test()अधिभार, void a::test(int)स्वीकार किया जाता है)
  • decltype(hasTest<b>(0))::valueहै true(क्योंकि intconvertable है double int b::test(double)स्वीकार किया जाता है, वापसी प्रकार से स्वतंत्र)
  • decltype(hasTest<c>(0))::valueहै false( cनाम की कोई विधि नहीं है जो testएक प्रकार से intस्वीकार्य है जिससे यह स्वीकार नहीं किया जाता है)

इस समाधान में 2 कमियां हैं:

  1. कार्यों की एक जोड़ी की प्रति विधि घोषणा की आवश्यकता है
  2. नामस्थान प्रदूषण बनाता है विशेष रूप से अगर हम समान नामों के लिए परीक्षण करना चाहते हैं, उदाहरण के लिए हम एक फ़ंक्शन का नाम क्या देंगे जो एक test()विधि के लिए परीक्षण करना चाहते थे ?

इसलिए यह महत्वपूर्ण है कि इन कार्यों को विवरण नाम स्थान, या आदर्श रूप में घोषित किया जाए यदि वे केवल एक वर्ग के साथ उपयोग किए जाने वाले हैं, तो उन्हें उस वर्ग द्वारा निजी रूप से घोषित किया जाना चाहिए। इस जानकारी को समाप्त करने में आपकी मदद करने के लिए मैंने एक मैक्रो लिखा है:

#define FOO(FUNCTION, DEFINE) template <typename T, typename S = decltype(declval<T>().FUNCTION)> static true_type __ ## DEFINE(int); \
                              template <typename T> static false_type __ ## DEFINE(...); \
                              template <typename T> using DEFINE = decltype(__ ## DEFINE<T>(0));

आप इस तरह का उपयोग कर सकते हैं:

namespace details {
    FOO(test(declval<int>()), test_int)
    FOO(test(), test_void)
}

इसके बाद फोन करने details::test_int<a>::valueया details::test_void<a>::valueप्राप्त होते हैं trueया falseइनलाइन कोड या परा प्रोग्रामिंग के प्रयोजनों के लिए।


3

गैर-दखल देने के लिए, आप serializeवर्ग के नामस्थान में भी अनुक्रमित किया जा सकता है, या संग्रह कक्षा का, कोएनिग लुकअप के लिए धन्यवाद । निशुल्क फ़ंक्शन ओवरराइड के लिए नामस्थान देखें अधिक जानकारी के लिए। :-)

एक नि: शुल्क समारोह को लागू करने के लिए किसी भी दिए गए नाम स्थान को खोलना बस गलत है। (उदाहरण के लिए, आपको अपने स्वयं के प्रकारों stdको लागू करने के swapलिए नेमस्पेस खोलने की आवश्यकता नहीं है , लेकिन इसके बदले कोएनिग लुकअप का उपयोग करना चाहिए)


3

आप डिटेक्टर मुहावरा चाहते हैं। उपरोक्त उत्तर इस पर बदलाव हैं जो C ++ 11 या C ++ 14 के साथ काम करते हैं।

std::experimentalपुस्तकालय सुविधाओं जो अनिवार्य रूप से ऐसा करने की है। ऊपर से एक उदाहरण का अनुकरण, यह हो सकता है:

#include <experimental/type_traits>

// serialized_method_t is a detector type for T.serialize(int) const
template<typename T>
using serialized_method_t = decltype(std::declval<const T&>.serialize(std::declval<int>()));

// has_serialize_t is std::true_type when T.serialize(int) exists,
// and false otherwise.
template<typename T>
using has_serialize_t = std::experimental::is_detected_t<serialized_method_t, T>;

यदि आप std :: प्रयोगात्मक का उपयोग नहीं कर सकते हैं, तो एक अल्पविकसित संस्करण इस तरह बनाया जा सकता है:

template <typename... Ts>
using void_t = void;
template <template <class...> class Trait, class AlwaysVoid, class... Args>
struct detector : std::false_type {};
template <template <class...> class Trait, class... Args>
struct detector<Trait, void_t<Trait<Args...>>, Args...> : std::true_type {};

// serialized_method_t is a detector type for T.serialize(int) const
template<typename T>
using serialized_method_t = decltype(std::declval<const T&>.serialize(std::declval<int>()));

// has_serialize_t is std::true_type when T.serialize(int) exists,
// and false otherwise.
template <typename T>
using has_serialize_t = typename detector<serialized_method_t, void, T>::type;

चूंकि has_serialize_t वास्तव में std :: true_type या std :: false_type है, इसलिए इसका उपयोग किसी भी सामान्य SFINAE मुहावरे के माध्यम से किया जा सकता है:

template<class T>
std::enable_if_t<has_serialize_t<T>::value, std::string>
SerializeToString(const T& t) {
}

या अधिभार संकल्प के साथ प्रेषण का उपयोग करके:

template<class T>
std::string SerializeImpl(std::true_type, const T& t) {
  // call serialize here.
}

template<class T>
std::string SerializeImpl(std::false_type, const T& t) {
  // do something else here.
}

template<class T>
std::string Serialize(const T& t) {
  return SerializeImpl(has_serialize_t<T>{}, t);
}

2

ठीक है। दूसरा प्रयास। यह ठीक है अगर आपको यह पसंद नहीं है, तो मैं और अधिक विचारों की तलाश कर रहा हूं।

हर्ब सटर का लेख लक्षण के बारे में बात करता है। तो आपके पास एक विशेषता वर्ग हो सकता है जिसकी डिफ़ॉल्ट तात्कालिकता में गिरावट का व्यवहार होता है, और प्रत्येक वर्ग के लिए जहां आपका सदस्य कार्य मौजूद होता है, फिर विशेषता वर्ग सदस्य फ़ंक्शन को लागू करने के लिए विशेष होता है। मेरा मानना ​​है कि हर्ब के लेख में ऐसा करने के लिए एक तकनीक का उल्लेख है ताकि इसमें बहुत सारी नकल और पेस्टिंग शामिल न हो।

जैसा कि मैंने कहा, हालांकि, शायद आप "टैगिंग" कक्षाओं में शामिल अतिरिक्त काम नहीं चाहते हैं जो उस सदस्य को लागू करते हैं। किस मामले में, मैं एक तीसरा समाधान देख रहा हूं ...।


एह ... मैंने इस समाधान का विश्लेषण किया है ... मुझे लगता है कि यह मेरे ढांचे के उपयोगकर्ताओं के लिए थोड़ा महंगा है। (ठीक है, मैं मानता हूं, मैं एक स्ट्रीमिंग फ्रेमवर्क विकसित कर रहा हूं और मैं
इस्ट्रीम का

मेरा तीसरा समाधान SFINAE का उपयोग करना होगा। चूंकि yrp के उत्तर में पहले से ही इसका उल्लेख है, इसलिए मैं इसमें नहीं जाऊंगा (क्योंकि मैं अभी भी इस पर शोध कर रहा हूं: मुझे विचार पता है, लेकिन शैतान विवरण में है), जब तक कि उसका समाधान अंत में आपके लिए काम न करे। । :-)
क्रिस जस्टर-यंग

1

बिना C ++ 11 समर्थन ( decltype) के यह काम कर सकता है:

SSCCE

#include <iostream>
using namespace std;

struct A { void foo(void); };
struct Aa: public A { };
struct B { };

struct retA { int foo(void); };
struct argA { void foo(double); };
struct constA { void foo(void) const; };
struct varA { int foo; };

template<typename T>
struct FooFinder {
    typedef char true_type[1];
    typedef char false_type[2];

    template<int>
    struct TypeSink;

    template<class U>
    static true_type &match(U);

    template<class U>
    static true_type &test(TypeSink<sizeof( matchType<void (U::*)(void)>( &U::foo ) )> *);

    template<class U>
    static false_type &test(...);

    enum { value = (sizeof(test<T>(0, 0)) == sizeof(true_type)) };
};

int main() {
    cout << FooFinder<A>::value << endl;
    cout << FooFinder<Aa>::value << endl;
    cout << FooFinder<B>::value << endl;

    cout << FooFinder<retA>::value << endl;
    cout << FooFinder<argA>::value << endl;
    cout << FooFinder<constA>::value << endl;
    cout << FooFinder<varA>::value << endl;
}

यह उम्मीद कैसे काम करती है

A, Aaऔर Bप्रश्न में क्लैस हैं, Aaवह विशेष है जो उस सदस्य को विरासत में मिला है जिसे हम खोज रहे हैं।

में और संवाददाता सी ++ 11 कक्षाओं के लिए प्रतिस्थापन कर रहे हैं। इसके अलावा टेम्पलेट मेटा प्रोग्रामिंग की समझ के लिए, वे SFINAE-sizeof-trick के आधार को प्रकट करते हैं।FooFindertrue_typefalse_type

TypeSinkएक टेम्पलेट struct कि बाद में प्रयोग किया जाता है का अभिन्न परिणाम सिंक करने के लिए है sizeofएक टेम्पलेट इन्स्टेन्शियशन में ऑपरेटर एक प्रकार के रूप में।

matchसमारोह टेम्पलेट का एक और SFINAE तरह है कि एक सामान्य समकक्ष बिना छोड़ दिया जाता है। इसलिए यह केवल तात्कालिक हो सकता है यदि इसके तर्क का प्रकार उस प्रकार से मेल खाता है जो इसके लिए विशेष था।

testएनम घोषणा के साथ दोनों फ़ंक्शन अंत में केंद्रीय SFINAE पैटर्न बनाते हैं। एक दीर्घवृत्त का उपयोग करने वाला एक सामान्य है जो false_typeपूर्वता लेने के लिए और अधिक विशिष्ट तर्कों के साथ एक प्रतिपक्ष देता है।

दृष्टांत के लिए सक्षम होने के लिए testकी एक टेम्पलेट तर्क के साथ समारोह T, matchसमारोह, instantiated किया जाना चाहिए के रूप में अपनी वापसी प्रकार का दृष्टांत के लिए आवश्यक है TypeSinkतर्क। चेतावनी यह है कि &U::fooएक फ़ंक्शन तर्क में लिपटे जाने को टेम्पलेट तर्क विशेषज्ञता के भीतर से संदर्भित नहीं किया जाता है, इसलिए विरासत में मिला सदस्य लुकअप जगह लेता है।


1

यदि आप फ़ेसबुक का उपयोग कर रहे हैं, तो उनकी मदद करने के लिए उनके बॉक्स मैक्रो से बाहर हैं:

#include <folly/Traits.h>
namespace {
  FOLLY_CREATE_HAS_MEMBER_FN_TRAITS(has_test_traits, test);
} // unnamed-namespace

void some_func() {
  cout << "Does class Foo have a member int test() const? "
    << boolalpha << has_test_traits<Foo, int() const>::value;
}

हालांकि कार्यान्वयन विवरण पिछले उत्तर के साथ समान है, लाइब्रेरी का उपयोग सरल है।


0

मुझे इसी तरह की आवश्यकता थी और इस एस ओ पर आया। यहां कई दिलचस्प / शक्तिशाली समाधान प्रस्तावित हैं, हालांकि यह सिर्फ एक विशिष्ट आवश्यकता के लिए थोड़ा लंबा है: पता लगाएँ कि क्या किसी वर्ग के पास सटीक हस्ताक्षर के साथ सदस्य कार्य है। इसलिए मैंने कुछ पठन / परीक्षण किया और अपने संस्करण के साथ आया जो कि रुचि के हो सकते हैं। यह पता लगाता है:

  • स्थिर सदस्य समारोह
  • गैर-स्थैतिक सदस्य फ़ंक्शन
  • गैर-स्थैतिक सदस्य फ़ंक्शन कॉन्स्टेंस

एक सटीक हस्ताक्षर के साथ। चूंकि मुझे किसी भी हस्ताक्षर पर कब्जा करने की आवश्यकता नहीं है (जिसके लिए अधिक जटिल समाधान की आवश्यकता होगी), यह एक मुझे मुकदमा करता है। यह मूल रूप से enable_if_t का उपयोग करता था

struct Foo{ static int sum(int, const double&){return 0;} };
struct Bar{ int calc(int, const double&) {return 1;} };
struct BarConst{ int calc(int, const double&) const {return 1;} };

// Note : second typename can be void or anything, as long as it is consistent with the result of enable_if_t
template<typename T, typename = T> struct has_static_sum : std::false_type {};
template<typename T>
struct has_static_sum<typename T,
                        std::enable_if_t<std::is_same<decltype(T::sum), int(int, const double&)>::value,T> 
                      > : std::true_type {};

template<typename T, typename = T> struct has_calc : std::false_type {};
template<typename T>
struct has_calc <typename T,
                  std::enable_if_t<std::is_same<decltype(&T::calc), int(T::*)(int, const double&)>::value,T>
                > : std::true_type {};

template<typename T, typename = T> struct has_calc_const : std::false_type {};
template<typename T>
struct has_calc_const <typename T,
                        std::enable_if_t<std::is_same<decltype(&T::calc), int(T::*)(int, const double&) const>::value,T>
                      > : std::true_type {};

int main ()
{
    constexpr bool has_sum_val = has_static_sum<Foo>::value;
    constexpr bool not_has_sum_val = !has_static_sum<Bar>::value;

    constexpr bool has_calc_val = has_calc<Bar>::value;
    constexpr bool not_has_calc_val = !has_calc<Foo>::value;

    constexpr bool has_calc_const_val = has_calc_const<BarConst>::value;
    constexpr bool not_has_calc_const_val = !has_calc_const<Bar>::value;

    std::cout<< "           has_sum_val " << has_sum_val            << std::endl
             << "       not_has_sum_val " << not_has_sum_val        << std::endl
             << "          has_calc_val " << has_calc_val           << std::endl
             << "      not_has_calc_val " << not_has_calc_val       << std::endl
             << "    has_calc_const_val " << has_calc_const_val     << std::endl
             << "not_has_calc_const_val " << not_has_calc_const_val << std::endl;
}

आउटपुट:

           has_sum_val 1
       not_has_sum_val 1
          has_calc_val 1
      not_has_calc_val 1
    has_calc_const_val 1
not_has_calc_const_val 1

0

जर्क के जवाब पर बिल्डिंग , मैंने नेस्टेड टेम्पलेट क्लासेस और / या फ़ंक्शंस का उपयोग करने से परहेज किया है।

#include <type_traits>

#define CHECK_NESTED_FUNC(fName) \
    template <typename, typename, typename = std::void_t<>> \
    struct _has_##fName \
    : public std::false_type {}; \
    \
    template <typename Class, typename Ret, typename... Args> \
    struct _has_##fName<Class, Ret(Args...), \
        std::void_t<decltype(std::declval<Class>().fName(std::declval<Args>()...))>> \
    : public std::is_same<decltype(std::declval<Class>().fName(std::declval<Args>()...)), Ret> \
    {}; \
    \
    template <typename Class, typename Signature> \
    using has_##fName = _has_##fName<Class, Signature>;

#define HAS_NESTED_FUNC(Class, Func, Signature) has_##Func<Class, Signature>::value

हम नीचे के रूप में उपरोक्त मैक्रोज़ का उपयोग कर सकते हैं:

class Foo
{
public:
    void Bar(int, const char *) {}
};

CHECK_NESTED_FUNC(Bar);  // generate required metafunctions

int main()
{
    using namespace std;
    cout << boolalpha
         << HAS_NESTED_FUNC(Foo, Bar, void(int, const char *))  // prints true
         << endl;
    return 0;
}

सुझावों का स्वागत है।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.