Reputation: 1745
I'm overloading the constructor of a templated class A
with different input types, for both scalar and container-type arguments:
template<typename T>
class A {
public:
A();
A(T&& _val) { printf("non-template constructor\n");} ;
template<typename iT> A(const iT& _cont) { printf("template constructor\n");};
};
int main(int argc, char const *argv[]) {
A<float> foo1(0.9); //template constructor
A<float> foo2((float)0.9); //no-template constructor
A<float> foo3(std::vector<int>(5,8)); //template constructor
return 0;
}
However, is there a way to call force the non-template constructor on implicitly castable types e.g. passing a double
to constructor A<float>()
?
Upvotes: 3
Views: 87
Reputation: 477070
Yes, you can add a SFINAE-constraint to your constructor template:
template<typename iT,
std::enable_if_t<!std::is_convertible_v<iT&&, T>>* = nullptr>
A(const iT&) { printf("template constructor\n"); }
This has the effect of causing substitution failure for the deduced type iT
when iT&&
is convertible to T
, which removes the constructor template from the overload set.
(You need to #include <type_traits>
for the various library facilities used to express the constraint.)
Upvotes: 5