Назначить назначенную функцию указателю на член функции?
Дано
void* hello () {
cout << "Test.\n";
}
а также
struct _table_struct {
void *(*hello) ();
};
Как мы назначаем функцию (привет) указателю на член функции?
Я попробовал это (в основном):
_table_struct g_table;
_table_struct *g_ptr_table = &g_table;
// trying to get the struct member function pointer to point to the designated function
(*(g_ptr_table)->hello) = &hello; // this line does not work
// trying to activate it
(*(g_ptr_table)->hello)();
1 ответ
Решение
Вы не разыменовываете указатель при назначении его для указания на объект.
g_ptr_table->hello = &hello; // note: the & is optional
g_ptr_table->hello(); // dereferencing the function pointer is also optional