使用块查找匹配条件的值
对我来说,这是完全有道理的:
triple = dice.collect {|value| if (dice.count(value) >= 3)} ---> Syntax error
或者
triple = dice.collect {|value| dice.count(value) >= 3} ----> Array of true/false
我想要数字的值,而不是 dice.count() 的真假。我知道一定有一种简单的方法可以做到这一点。
To me this makes perfect sense:
triple = dice.collect {|value| if (dice.count(value) >= 3)} ---> Syntax error
OR
triple = dice.collect {|value| dice.count(value) >= 3} ----> Array of true/false
I want the value of the number, not the true or falsity of dice.count(). I know there must be a simple way of doing this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
听起来你想要
Array#select
,而不是Array#collect
(也称为如Array#map
)。collect/map
将获取每个值
并将块的结果放入数组中。这就是为什么您会看到一系列 true/false 的原因。select
将获取每个值
,如果块的计算结果为true
,则将其作为数组成员返回:It sounds like you want
Array#select
, notArray#collect
(also known asArray#map
).collect/map
will take eachvalue
and put the results of your block into an array. This is why you're seeing an array of true/false.select
will take eachvalue
, and return it as a member of an array if the block evaluates totrue
:您的块需要返回最终数组中您想要的任何内容。
请注意,对于元素
nil
,这将返回nil
。 3(尽管您可以添加else
来返回 0 或其他值)。如果您只需要与查询匹配的元素,则需要使用dice.select()
Your block needs to return whatever it is you want in the final array.
Note that this will return
nil
for elements < 3 (though you can add anelse
to return 0 or something). If you only want elements that match your query, you'll need to usedice.select()
至于您的第一个代码片段,
因此,
if (dice.count(value) >= 3)
是一个不完整的if
语句。这就是为什么你会收到语法错误。As for your first code snippet,
Thus,
if (dice.count(value) >= 3)
is an incompleteif
statement. That's why you get syntax error.