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 = %d", a , …