英文:
type alias declaration for function pointer without parameters
问题
从Cppreference - 类型别名 我知道以下类型别名声明是有效的:
using func = void (*)(int, int);
那么一个指向类成员函数的函数指针的等效形式是什么样的呢?
英文:
From Cppreference - Type alias I know that following type alias declaration works:
using func = void (*) (int, int);
How does the equivalent for a function pointer to a class member look like?
答案1
得分: 3
只需要在 *
前面添加一个合格的类名。
例如:using func = void (foo::*)(int, int);
示例:
struct foo
{
void bar(int, int);
};
using func = void (foo::*)(int, int);
func ptr = &foo::bar;
英文:
You just need to add a qualifying class name before the *
.
For example using func = void (foo::*)(int, int);
Demo :
struct foo
{
void bar(int, int);
};
using func = void (foo::*)(int, int);
func ptr = &foo::bar;
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论