1
我正在嘗試使用模板參數std::less
,std::greater
或。這是後續到this question,因爲答案沒有提供完整的示例,我無法成功使用模板比較器。使用模板比較器的完整示例
#include <functional>
#include <algorithm>
template <typename C>
class Test
{
int compare(int l, int n, int x, int y)
{
public:
bool z = C(x, y);
if(l < n && z)
{
return 1;
}
else
{
return 2;
}
}
};
int main() {
Test<std::less<int>> foo;
Test<std::greater<int>> bar;
foo.compare(1, 2, 3, 4);
bar.compare(1, 2, 3, 4);
}
變化'布爾Z = C(X,Y);'到'布爾Z = C {}(X, Y);'。 – ildjarn
「我無法工作」是什麼意思? – user4759923