我可以描述我正在寻找的最好的方法是向您展示我迄今为止尝试过的失败代码:
case car
when ['honda', 'acura'].include?(car)
# code
when 'toyota' || 'lexus'
# code
end
我有大约4或5种不同的when
情况,应该由大约50种不同的car
值触发。有没有办法用case
块做这个或者我应该尝试一个巨大的if
块?
在case
声明中,,
相当于||
声明中的if
。
case car
when 'toyota', 'lexus'
# code
end
您可以利用ruby的“splat”或flattening语法。
这会产生过度生长的when
子句 - 如果我理解正确的话,你有大约10个值可以测试每个分支 - 在我看来更具可读性。此外,您可以修改要在运行时测试的值。例如:
honda = ['honda', 'acura', 'civic', 'element', 'fit', ...]
toyota = ['toyota', 'lexus', 'tercel', 'rx', 'yaris', ...]
...
if include_concept_cars
honda += ['ev-ster', 'concept c', 'concept s', ...]
...
end
case car
when *toyota
# Do something for Toyota cars
when *honda
# Do something for Honda cars
...
end
另一种常见的方法是使用散列作为调度表,使用car
的每个值的键和作为封装您希望执行的代码的某个可调用对象的值。
将逻辑放入数据的另一种好方法是这样的:
# Initialization.
CAR_TYPES = {
foo_type: ['honda', 'acura', 'mercedes'],
bar_type: ['toyota', 'lexus']
# More...
}
@type_for_name = {}
CAR_TYPES.each { |type, names| names.each { |name| @type_for_name[type] = name } }
case @type_for_name[car]
when :foo_type
# do foo things
when :bar_type
# do bar things
end