标签: c++ templates
我想为变量实现模板方法。
但是根据输入是否是int-variant(char,short,int),我想要处理它与输入是float-variant(float,double,long double)的情况有些不同。 / p>
有办法做到这一点吗?
答案 0 :(得分:3)
检测类型: http://en.cppreference.com/w/cpp/types/is_integral http://en.cppreference.com/w/cpp/types/is_floating_point
同时查看SFINAE并将调度标记为实际选择实现