#include <string>#include <type_traits>template<typename T>struct Impl{ std::enable_if_t<!std::is_pointer<T>::value,T> operator()(const std::string& key,int node) { return static_cast<T>(); } std::enable_if_t<std::is_pointer<T>::value,int node) { return new T(); }};int main(){}
相反,我得到一个错误编译:
‘std :: enable_if_t< std :: is_pointer< _Tp> :: value,T> Impl< T> :: operator()(const string&,int)’不能用’std :: enable_if_t<(!std :: is_pointer< _Tp> :: value)重载,int)’
template <typename U = T>std::enable_if_t<!std::is_pointer<U>::value,U> operator()(const std::string& key,int node){ return static_cast<U>();}template <typename U = T>std::enable_if_t<std::is_pointer<U>::value,int node){ return new U();}总结
以上是内存溢出为你收集整理的c – 为什么enable_if不在这里工作?全部内容,希望文章能够帮你解决c – 为什么enable_if不在这里工作?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)