gpt4 book ai didi

c++ - 函数指针作为类方法声明中的参数

转载 作者:行者123 更新时间:2023-11-30 01:51:42 25 4
gpt4 key购买 nike

我正在尝试创建一个类方法,它采用函数指针(常规 C 函数指针,而不是类方法指针)作为参数。当我搜索时唯一出现的是如何创建/使用成员函数指针,我不想这样做。所以这里有一个方法,它接受一个返回 bool 的函数指针,并接受两个 int 作为参数:

class ExampleA
{
public:
void sort(WHAT_GOES_HERE); // Should it be the same as method definition below?
};

ExampleA::sort(bool (*customSort)(int, int)) // Hopefully this is correct
{
// Use function pointer
}

有没有办法在方法声明中声明参数而不用像带有int参数的方法那样命名?

class ExampleB
{
public:
void someFunction(int); // Not named here
};

ExampleB::someFunction(int varName)
{
// do whatever
}

最佳答案

是的!只需省略名称即可。

void sort(bool (*)(int, int));

关于c++ - 函数指针作为类方法声明中的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25800850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com