这有什么问题?
我认为这应该在使用 enable if 时起作用???
帮助??
不应该排除第二个构造函数吗?
#include <iostream>
#include <boost/type_traits.hpp>
#include <boost/utility/enable_if.hpp>
template<class T>
class integral_holder{
public:
integral_holder(T value_, typename boost::enable_if_c< boost::is_integral<T>::value>::type* ignore = 0) : value(value_){
std::cout << "Integral" << std::endl;
}
integral_holder(T value_, typename boost::enable_if_c< boost::is_floating_point<T>::value>::type* ignore = 0) : value(floor(value_)){
std::cout << "Floating point" << std::endl;
}
private:
T value;
};
int main(int argc, const char * argv[])
{
integral_holder<int> a(22);
return 0;
}