gpt4 book ai didi

c++ - 在 C++ 代码中奇怪地使用 void

转载 作者:太空狗 更新时间:2023-10-29 23:27:56 25 4
gpt4 key购买 nike

这里是一些关于 C++ 异步任务的演示文稿中的代码

template <class T> class Future<T>{
//something
void foo(std::function<void(T)> cb);
//something
};

void(T) 是什么意思?

最佳答案

What does void(T) mean?

指定一个函数类型;具体来说,一个函数采用 T 类型的单个参数,并且不返回任何内容。通常,复杂类型的类型说明符看起来像它们对应的变量声明,但没有变量名:

void f(T); // declare a function
void(T) // specifier for a function type

int a[42]; // declare an array
int[42] // specifier for an array type

在这种情况下,函数类型用于指定 std::function 的函数调用运算符的签名:

void operator()(T);

以便函数对象可以像具有该类型的函数一样使用:

T some_t;
cb(some_t); // usable like a function taking `T`

关于c++ - 在 C++ 代码中奇怪地使用 void,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23654527/

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