无法满足 ranges::count() 的约束
Unable to Satisfy Constraint for ranges::count()
我正在研究范围函数。
struct User
{
std::string name;
int age;
std::string gender;
template<class Os> friend
Os& operator<<(Os& os, User const& u)
{
return os << "\n" << std::right << std::setw(10)
<< u.name << " - " << u.age << ", " << u.gender;
}
};
std::vector<User> users = {
{"Dorothy", 59, "F"},
{"Allan", 60, "M"},
{"Kenny", 33, "M"},
{"Jaye", 30, "F"}
};
int main()
{
std::cout << "Count of M users: " <<
std::ranges::count_if(users, [](const User& u) {return u.gender == "M"; }) <<
std::endl;
const User match { "Ed", 44, "M" };
std::cout << "Count of Ed users: " <<
std::ranges::count(users, match) <<
std::endl;
}
count_if 按预期运行。计数表达式在 MSVS 2019 中生成错误。
Error C7602 'std::ranges::_Count_fn::operator ()': the associated constraints are not satisfied D:\Test\Code\Ranges\Ranges.cpp
它指向标准算法 header。我显然不理解 indirect_binary_predicate 这是为计数函数列出的唯一约束。阅读 cppreference.com 是...没有帮助 :-).
我在这里错过了什么?
在 std::ranges::count_if
中,您提供了自定义比较器。但是,在 std::ranges::count
中,您尝试使用默认比较,但实际上并没有。
你需要提供它,假设你想对结构成员进行成员方面的比较,你可以简单地添加:
auto operator<=>(User const &) const = default;
到你的结构。
如果您想要不同类型的比较,您必须指定而不是使用 = default
。
我正在研究范围函数。
struct User
{
std::string name;
int age;
std::string gender;
template<class Os> friend
Os& operator<<(Os& os, User const& u)
{
return os << "\n" << std::right << std::setw(10)
<< u.name << " - " << u.age << ", " << u.gender;
}
};
std::vector<User> users = {
{"Dorothy", 59, "F"},
{"Allan", 60, "M"},
{"Kenny", 33, "M"},
{"Jaye", 30, "F"}
};
int main()
{
std::cout << "Count of M users: " <<
std::ranges::count_if(users, [](const User& u) {return u.gender == "M"; }) <<
std::endl;
const User match { "Ed", 44, "M" };
std::cout << "Count of Ed users: " <<
std::ranges::count(users, match) <<
std::endl;
}
count_if 按预期运行。计数表达式在 MSVS 2019 中生成错误。
Error C7602 'std::ranges::_Count_fn::operator ()': the associated constraints are not satisfied D:\Test\Code\Ranges\Ranges.cpp
它指向标准算法 header。我显然不理解 indirect_binary_predicate 这是为计数函数列出的唯一约束。阅读 cppreference.com 是...没有帮助 :-).
我在这里错过了什么?
在 std::ranges::count_if
中,您提供了自定义比较器。但是,在 std::ranges::count
中,您尝试使用默认比较,但实际上并没有。
你需要提供它,假设你想对结构成员进行成员方面的比较,你可以简单地添加:
auto operator<=>(User const &) const = default;
到你的结构。
如果您想要不同类型的比较,您必须指定而不是使用 = default
。