我尝试在部分专业化中将 CTAD 与 SFINAE 结合使用,但除非我添加看似无用的推导指南,否则它不会编译。背后的原因/限制是什么?
template<typename T, typename Enable = void>
struct A;
template<typename T>
struct A< T, std::enable_if_t<std::is_arithmetic_v<T>>>
{
A(T) { std::cout << "Numerical"; }
};
template<typename T>
struct A<T, std::enable_if_t<!std::is_arithmetic_v<T>>>
{
A(T) { std::cout << "Other"; }
};
template<typename T>
A(T)->A<T>; //Need to have this, otherwise doesn't compile
int main()
{
A a{ 1 };
}