Вопрос заключается в следующем: рассмотрим этот кусок кода:
#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 , b , a - b);
}
int main (int argc, const char* argv[])
{
aClass a();
function1(&test);
function1(&aClass::aTest); // <-- How should I point to a aClass::test function?
return 0;
}
Как я могу использовать a
aClass::test
в качестве аргумента function1
? Я застрял в этом.
Я хотел бы получить доступ к члену класса.