gpt4 book ai didi

c++ - 使用函数的返回类型和参数类型作为模板类型

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

<分区>

是否可以弄清楚函数的返回类型和参数类型并将它们用作模板类型?考虑以下示例:

template <typename ret, typename in>
class Bar {
// Some code
}

int foo(float x) {
return 0;
}

int main() {
Bar<int, float> b; // Can this be done automatically by inspection of foo at compile time?
}

我可以使用foo的函数签名来设置Bar的模板类型吗?

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