gpt4 book ai didi

c++ - 执行 SFINAE 时访问模板派生类 (CRTP) 的静态函数时类型不完整

转载 作者:行者123 更新时间:2023-11-30 03:32:58 25 4
gpt4 key购买 nike

Demo

template <typename T>
struct A {
void mem_func() {
// This works!!! Can access static_func<int>();
std::cout << T::template static_func<int>() << '\n';
}
template <typename K>
static constexpr bool static_func() { return true; }

template <typename T1>
typename std::enable_if<T::template static_func<T1>(), void> sfinae_func() {
// This breaks!!! T is an incomplete type??
std::cout << "This fails" <<'\n';
}
};

struct B : A<B> {
};

在这里,我不明白为什么 T::static_func 在成员函数 foo() 中工作,但是当我去实例化 sfinae_func 时,同样的 T::static_func 是不可访问的,因为 T 是不完整的!怎么会这样??

后续是这样的:如果标准限制我访问 enable_if 中的 T::static_func,是否有一种解决方法可以在需要时使用 T::static_func 隐藏 A::static_funct?

template <typename T1>
typename std::enable_if<T::template static_func<T1>(), void> sfinae_func()

如果调用 T 的 static_func 使得 T 的 static_func 隐藏 A 的 static_func,需要做什么才能启用?

最佳答案

要解决此问题,您可以通过使 sfinae_funcT 附加模板参数的默认值来延迟类型实例化,例如如下(哦,不要忘记使用 std::enable_if 的内部类型来实际执行 sfinae):

#include <iostream>
template <typename T>
struct A {
void mem_func() {
std::cout << T::template static_func<int>() << '\n';
}
template <typename K>
static constexpr bool static_func() { return true; }

template <typename T1, typename TT = T>
typename std::enable_if<TT::template static_func<T1>(), void>::type sfinae_func() {
std::cout << "This fails" <<'\n';
}
};

struct B : A<B> {
};
int main() {
B a;
a.mem_func();
a.sfinae_func<int>();
}

[live demo]

关于c++ - 执行 SFINAE 时访问模板派生类 (CRTP) 的静态函数时类型不完整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43307462/

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