gpt4 book ai didi

c++ - 如何声明一个以函数为参数的函数?

转载 作者:太空狗 更新时间:2023-10-29 20:05:04 24 4
gpt4 key购买 nike

抱歉冗长且令人困惑的标题!这是我的问题:我正在尝试编写一个函数来输出另一个函数所花费的时间。通常我只是传入函数及其参数,但在这种情况下,我尝试为自己计时的函数将函数作为参数。

举个具体的例子,我正在努力让它发挥作用:

void foo(void (*f) (T*)){
...function stuff...
}

--------not sure what this should be
|
void runWithTime(void (*f) (void (*g) (T*))){
f(g)
}

//runWithTime(foo);

我希望能够调用 runWithTime(foo),但我不确定 runWithTime 的参数应该是什么类型。

任何帮助都会很棒!提前致谢。

最佳答案

一个简单的解决方案:

template<typename T>
auto runWithTime0(T _func) -> decltype(_func())
{
startTimer();
_func();
endTimer();
}

template<typename T, typename P1>
auto runWithTime1(T _func, P1 _arg1) -> decltype(_func(_arg1))
{
startTimer();
_func(_arg1);
endTimer();
}

// ...etc

您可以使用 boost::bind 做一些类似的事情,但如果不可用,上面的方法应该可以解决问题。

编辑: 添加了返回值,如果您的编译器支持 c++11(我相信是 VC2010/2012、g++4.7 或更高版本),这将起作用

关于c++ - 如何声明一个以函数为参数的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15510264/

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