pointer-to-member पर टैग किए गए जवाब

9
मैं एक सदस्य फ़ंक्शन कैसे पास कर सकता हूं जहां एक मुफ्त फ़ंक्शन अपेक्षित है?
प्रश्न निम्नलिखित है: कोड के इस टुकड़े पर विचार करें: #include <iostream> class aClass { public: void aTest(int a, int b) { printf("%d + %d = %d", a, b, a + b); } }; void function1(void (*function)(int, int)) { function(1, 1); } void test(int a,int b) { printf("%d - %d …
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.