Si è verificato un problema relativo all'uso appropriato di enable_if e della specializzazione del modello.Specializzazione del modello e problemi enable_if
Dopo aver modificato l'esempio (per motivi di riservatezza), ecco un esempio simile:
I have function called "less" that checks if 1st arg is less than 2nd arg. Let's say I want to have 2 different kinds of implementations depending on the type of input - 1 implementation for integer and another for double.
Il codice che ho finora sembra che questo -
#include <type_traits>
#include <iostream>
template <class T,
class = typename std::enable_if<std::is_floating_point<T>::value>::type>
bool less(T a, T b) {
// ....
}
template <class T,
class = typename std::enable_if<std::is_integral<T>::value>::type>
bool less(T a, T b) {
// ....
}
int main() {
float a;
float b;
less(a,b);
return 0;
}
Il codice di cui sopra non compila perché - Dice che sto ridefinendo il meno metodo.
Gli errori sono:
Z.cpp:15:19: error: template parameter redefines default argument
class = typename std::enable_if<std::is_integral<T>::value>::type>
^
Z.cpp:9:19: note: previous default template argument defined here
class = typename std::enable_if<std::is_floating_point<T>::value>::type>
^
Z.cpp:16:11: error: redefinition of 'less'
bool less(T a, T b) {
^
Z.cpp:10:11: note: previous definition is here
bool less(T a, T b) {
^
Z.cpp:23:5: error: no matching function for call to 'less'
less(a,b);
^~~~
Z.cpp:15:43: note: candidate template ignored: disabled by 'enable_if'
[with T = float]
class = typename std::enable_if<std::is_integral<T>::value>::type>
^
3 errors generated.
Qualcuno può indicare qual è l'errore qui?
in sostanza non si utilizza 'enable_if' correttamente a causa del modo in cui si richiama il tipo restituito. – Alex
La soluzione rapida consiste nell'aggiungere un parametro di ellissi '...' a uno dei modelli in modo che vengano considerati distinti sovraccarichi. – 0x499602D2
Oppure modifica la firma (o le firme) in 'template :: value> :: type * = nullptr>' –
vsoftco