Błąd w kodzie this:Strange „Nie można wywnioskować szablonu argumentu dla«T»” błąd
//myutil.h
template <class T, class predicate>
T ConditionalInput(LPSTR inputMessage, LPSTR errorMessage, predicate condition);
//myutil.cpp
template <class T, class Pred>
T ConditionalInput(LPSTR inputMessage, LPSTR errorMessage, Pred condition)
{
T input
cout<< inputMessage;
cin>> input;
while(!condition(input))
{
cout<< errorMessage;
cin>> input;
}
return input;
}
...
//c_main.cpp
int row;
row = ConditionalInput("Input the row of the number to lookup, row > 0: ",
"[INPUT ERROR]: Specified number is not contained in the range [row > 0]. "
"Please type again: ", [](int x){ return x > 0; });
błędu jest:
Error 1 error C2783: 'T ConditionalInput(LPSTR,LPSTR,predicate)' :
could not deduce template argument for 'T' c_main.cpp 17 1
mam zmaga się z nim przez kilka godzin ale nie może znaleźć rozwiązania. Uważam, że błąd może być trywialny, ale nie mogłem znaleźć nikogo, kto spotkałby się z błędem w podobnych okolicznościach. Pomoc bardzo doceniona!
EDYCJA: Korekta dokonana przez Frederika Slijkermana rozwiązuje jeden problem, ale tworzy kolejny. Tym razem błąd jest następujący:
Error 1 error LNK2019: unresolved external symbol "int __cdecl ConditionalInput<int,class `anonymous namespace'::<lambda0> >(char *,char *,class `anonymous namespace'::<lambda0>)" ([email protected]<lambda0>@[email protected]@@@YAHPAD0V<lambda0>@[email protected]@@Z) referenced in function _main
Proszę znieść mnie i pomóż mi rozwiązać ten problem.
Edytowane, ponieważ <> należy zastąpić lt/gt. – Scharron
Prawidłowa odpowiedź w komentarzach odpowiedzi powyżej. Chociaż ten użytkownik ma za to kredyty. – Johnny