gpt4 book ai didi

c++ - 如何在 C/C++ 中将 typedef 函数作为参数传递

转载 作者:行者123 更新时间:2023-11-30 20:50:35 28 4
gpt4 key购买 nike

我在网上查了一段时间,但没有发现任何与我的问题完全相似的内容。我正在使用一个定义了这个东西的类:

typedef bool ProgressCallback(double progress);

然后有一个函数像这样使用它:

// The documentation says that it will call progress_callback()
// during the write where the progress parameter = percentage complete
void WriteToFile(char* filename, ProgressCallback* progress_callback)

我到底应该如何调用这个函数?主要是 typedef 语法让我失望,因为将函数作为参数传递通常并不那么困难。这是我尝试过的:

// Apparently I can't just say "Progress Callback MyCallback{}"
// Since it gives me "function type may not come from a typedef" error
bool MyCallbackFunction(double progress){
return true;
}

void OtherFunction(){

// Can't assign. I get "a value type of bool (*)(double progress)" cannot be
// used to initalize an entity of type ProgressCallback*" error.
ProgressCallback* myfunction = MyCallbackFunction;
WriteToFile("Test.txt", myfunction);
}

显然我知道我这样做是错误的。但这是我所得到的最接近的。我完全不知道如何将该参数传递给 WriteToFile()。

任何帮助将不胜感激!

最佳答案

使用

typedef bool (*ProgressCallback)(double progress);

定义ProgressCallback

然后,您可以使用

ProgressCallback myfunction = MyCallbackFunction;
WriteToFile("Test.txt", myfunction);

关于c++ - 如何在 C/C++ 中将 typedef 函数作为参数传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43284213/

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