Я реализовал класс, как показано ниже. В конструкторе я получаю ошибку компиляции. Ребята, скажите, пожалуйста, почему?
class A{
public:
typedef void (A::*HANDLER)();
void test1(){
printf("This is test 1");
}
void test2(){
printf("This is test 2");
}
A(){
HANDLER h= &A::test1;
h(); // an error spawn here with the description: term does not evaluate to a function taking 0 arguments
}
};