gpt4 book ai didi

c++ - 模板类中的模板功能

转载 作者:行者123 更新时间:2023-12-02 10:32:04 25 4
gpt4 key购买 nike

Related to this

无法编译以下内容,我也不明白为什么。

Codebolt Code

片段在这里

#include <vector>
#include <string>



template<typename T>
class A
{
using func_type = bool(int const&);

template<func_type U, func_type X>
[[using gnu:cold]]void example(std::vector<std::string>&&);
};


template <typename T>
template <typename A<T>::func_type U, typename A<T>::func_type X>
void A<T>::example(std::vector<std::string>&&)
{

}

谢谢

最佳答案

如果您不想在类(class)之外的任何地方使用func_type。然后您应该将其更改为
using func_type = bool(*)(int const&);
请记住,语法类似于对函数指针使用typedef

关于c++ - 模板类中的模板功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61877479/

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