folgenden Code vor:Select Klasse Konstruktor enable_if
#include <iostream>
#include <type_traits>
template <typename T>
struct A {
int val = 0;
template <class = typename std::enable_if<T::value>::type>
A(int n) : val(n) {};
A(...) { }
/* ... */
};
struct YES { constexpr static bool value = true; };
struct NO { constexpr static bool value = false; };
int main() {
A<YES> y(10);
A<NO> n;
std::cout << "YES: " << y.val << std::endl
<< "NO: " << n.val << std::endl;
}
Ich möchte selektiv Konstruktor definieren A :: A (int) nur für einige Arten mit enable_if. Für alle anderen Typen gibt es den Standardkonstruktor A :: A (...), der der Standardfall für den Compiler sein sollte, wenn die Substitution fehlschlägt. Aber das macht Sinn für mich Compiler (gcc Version 4.9.0 20130714) noch beschwert
sfinae.cpp: In instantiation of 'struct A': sfinae.cpp:19:11:
required from here sfinae.cpp:9:5: error: no type named 'type' in
'struct std::enable_if'
A(int n) : val(n) {};
Ist so etwas möglich für Konstruktor? Ist das mit anderen Konstruktoren möglich (copy-constructor und move-constructor)?
Darf man ein bisschen Hilfsarbeiterklasse sein? –