gpt4 book ai didi

ruby - Rubocop:使用 next 跳过迭代

转载 作者:数据小太阳 更新时间:2023-10-29 07:49:15 25 4
gpt4 key购买 nike

我正在从 Rubocop 获取 Style/Next: Use next to skip iteration. 用于执行类似操作的代码(使用一个非常人为的示例):

tasks_running = [{ name: 'task1', done: false }, { name: 'task2', done: false }]
tasks_done = []

tasks_running.each do |task|
if task[:done]
unless tasks_done.include? task
tasks_done << task
next
end
end
end

仅在嵌套条件中使用 next 来跳过迭代。我不太明白如何满足这个标准。

最佳答案

我认为是提示,因为如果 tasks_done 包含 block 中的当前任务,您可以使用 next,否则,将该任务推送到 tasks_done 数组:

tasks_running.each do |task|
if task[:done]
next if tasks_done.include?(task)
tasks_done << task
end
end

在你的例子中,下一条语句总是被评估,因为它是 block 中的最后一个表达式,它做了它必须做的所有事情,只是继续迭代,因为它不会在那里。

tasks_running.each do |task|
if task[:done] # If true
unless tasks_done.include?(task) # If true
tasks_done << task # Do this
next # And jump to the next element
end
end
end

关于ruby - Rubocop:使用 next 跳过迭代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50146126/

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