- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关闭。这个问题是opinion-based .它目前不接受答案。
想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它.
去年关闭。
Improve this question
我必须执行多个 bool 运算,不是很复杂但很长,当我试图获得最好的可读性和可理解的结果时,我想出了多种解决方案,我不确定什么是“正确的”(惯用?) 方法。
我不确定是否有“正确”的答案,因为它可能是主观的,如果 X 更喜欢这种方式,我不会感兴趣,但我相信关于优化或惯用方式,有错误的答案或更好的答案。或者应该如何使用该功能,以及在哪种情况下。
目标:
pub struct Coord {
x: i32,
y: i32
}
impl Coord {
pub fn is_connected(&self, coord: &Coord) -> bool {}
}
调用 self 值 x1 和 y1,以及坐标值 x2 和 y2,is_connected 的结果将在以下情况下为真:
x1 == x2 and either y2 == y+1 or y2 == y-1
或者有一条线的条件已经完成
pub fn is_connected2(&self, coord: &Coord) -> bool {
coord.x == self.x && (coord.y == self.y+1 || coord.y == self.y-1)
|| (self.y < 6
&& ((self.y % 2 == 0 && coord.x == self.x+1 && coord.y == self.y+1)
|| (self.y % 2 == 1 && coord.x == self.x-1 && coord.y == self.y-1)))
|| (self.y > 6
&& ((self.y % 2 == 0 && coord.x == self.x-1 && coord.y == self.y+1)
|| (self.y % 2 == 1 && coord.x == self.x+1 && coord.y == self.y-1)))
}
我相信它有点难以阅读。
match (self, road)
并在比赛中做
((x,y),(x+1,y+1))
之类的事情)。
pub fn is_connected(&self, coord: &Coord) -> bool {
coord.x == self.x && (coord.y == self.y+1 || coord.y == self.y-1)
|| match self.y {
_ if self.y < 6 && self.y % 2 == 0 => {coord.x == self.x+1 && coord.y == self.y+1},
_ if self.y < 6 && self.y % 2 == 1 => {coord.x == self.x-1 && coord.y == self.y-1},
_ if self.y > 6 && self.y % 2 == 0 => {coord.x == self.x-1 && coord.y == self.y+1},
_ if self.y > 6 && self.y % 2 == 1 => {coord.x == self.x+1 && coord.y == self.y-1},
_ => false
}
}
pub fn is_connected_bis(&self, coord: &Coord) -> bool {
coord.x == self.x && (coord.y == self.y+1 || coord.y == self.y-1)
|| match (self.y < 6, self.y%2) {
(true, 0) => {coord.x == self.x+1 && coord.y == self.y+1},
(true, 1) => {coord.x == self.x-1 && coord.y == self.y-1},
(false, 0) => {coord.x == self.x-1 && coord.y == self.y+1},
(false, 1) => {coord.x == self.x+1 && coord.y == self.y-1},
_ => false
}
}
pub fn is_connected4(&self, coord: &Coord) -> bool {
// bis would be to take the y<6 and y%2 in the guard as well
match (self.y<6, self.y%2) {
(_,_) if coord.x == self.x && coord.y == self.y+1 => true,
(_,_) if coord.x == self.x && coord.y == self.y-1 => true,
(true, 0) if coord.x == self.x+1 && coord.y == self.y+1 => true,
(true, 1) if coord.x == self.x-1 && coord.y == self.y-1 => true,
(false, 0) if coord.x == self.x-1 && coord.y == self.y+1 => true,
(false, 1) if coord.x == self.x+1 && coord.y == self.y-1 => true,
_ => false
}
}
还有一种老式的 if 方式:
pub fn is_connected3(&self, coord: &Coord) -> bool {
let res: bool = coord.x == self.x && (coord.y == self.y+1 || coord.y == self.y-1);
res ||
// or if res {} else {}...
if self.y < 6 {
if self.y % 2 == 0 {
coord.x == self.x+1 && coord.y == self.y+1
} else {
coord.x == self.x-1 && coord.y == self.y-1
}
} else {
if self.y % 2 == 0 {
coord.x == self.x-1 && coord.y == self.y+1
} else {
coord.x == self.x+1 && coord.y == self.y-1
}
}
}
我不得不承认,在我完全意识到后卫应该是什么之前,我的问题最初是由如何在比赛条件下进行变量激发的。我的问题后来演变了,但仍然有一些原始的痕迹与所有匹配表达式。
最佳答案
bool 表达式很酷的一点是,它们经常可以被简化。我还没有测试下一个代码,但我希望它与您显示的表格等效。
pub fn is_connected(&self, coord: &Coord) -> bool {
let is_y_even = (self.y % 2 == 0);
let adjusted_x = if (self.y < 6) == is_y_even { self.x+1 } else { self.x-1 };
let adjusted_y = if is_y_even { self.y+1 } else { self.y-1 };
adjusted_x == coord.x && adjusted_y == coord.y
}
关于rust - 解决多个 bool 表达式的最佳/惯用方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65955820/
我对 Clojure 和函数式编程有了大约一周的了解——我的所有背景都是 OOP。我想利用 Clojure 备受争议的易读性和固有逻辑,但现在我不知道我是否成功地做到了这一点,只是没有完全理解它,或者
场景: val col: IndexedSeq[Array[Char]] = for (i = 0 && arr(last.y)(west) == '.') { arr(last.y)(w
我正面临 AngularJS、服务和范围的“问题”。 这不是一个真正的问题(我找到了几种使其工作的方法),但我想知道我是否在做正确的事情,或者我正在做的事情是否会导致将来出现问题 我有一个保存一些全局
进行以下数据结构转换的“Rubyist”方法是什么: 我有 incoming = [ {:date => 20090501, :width => 2}, {:
如何在 go 中编写返回集合最小值的函数?我不只是在寻找解决方案(我知道我可以在遍历第一个元素时只初始化最小值,然后设置一个我初始化最小值的 bool 变量),而是一个惯用的解决方案。由于 go 没有
好的,我知道我应该对我的特定应用程序进行基准测试,等等,但是: -Xmx 的默认 JVM 设置、默认垃圾收集器等,对于大多数典型的 Java 程序来说是合理的默认设置,并且可能不适合惯用的 Scala
既然 shared_ptr 在 tr1 中,你认为 std::auto_ptr 的使用会发生什么?它们都有不同的用例,但 auto_ptr 的所有用例也都可以用 shared_ptr 解决。你会放弃
这个问题在这里已经有了答案: What are the differences between type() and isinstance()? (8 个回答) 关闭 9 年前。 我需要知道 Pyth
在指定和创建数字函数时,是否有关于何时返回 null 以及何时返回 NaN 的任何 C# 惯用准则,当两者似乎都是有效输出时。 导致这个问题的具体例子是我正在为 Enumerable 集合创建一个百分
这个问题在这里已经有了答案: Retrieving the top 100 numbers from one hundred million of numbers [duplicate] (12 个
我可以通过反射检索方法,以某种方式将其与目标对象结合起来,并将其作为看起来像 Scala 中的函数的东西返回(即您可以使用括号调用它)吗?参数列表是可变的。它不一定是“一流”函数(我已经更新了问题),
我是一名优秀的程序员,十分优秀!