gpt4 book ai didi

C++ 飞船运算符多级比较?

转载 作者:行者123 更新时间:2023-12-03 20:22:52 25 4
gpt4 key购买 nike

新的 C++20 宇宙飞船运算符是否允许以简洁的方式表达短路多标准比较?比这更好的东西:

const firstCriteriaComparisonResult = lhs.x <=> rhs.x;
return firstCriteriaComparisonResult != 0 ? firstCriteriaComparisonResult : lhs.y <=> rhs.y;

最佳答案

平常的 tie -and-compare 方法也适用于宇宙飞船:

return std::tie(lhs.x, lhs.y) <=> std::tie(rhs.x, rhs.y);

关于C++ 飞船运算符多级比较?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67579993/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com