gpt4 book ai didi

ruby - 是否有类似 %w{ } 的方法在 Ruby 中创建 fixnums 数组?

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

有没有办法使用 ruby​​ 的 % 表示法创建 Fixnum 数组?

写起来显然很简单,例如 [编辑:将示例更改为不连续的数字]

digits = %w{4 8 15 16 23 42}.map{|d| d.to_i}

=> [4, 8, 15, 16, 23, 42]

但这让我很烦恼,我想知道是否有办法在没有 map 的情况下做到这一点。这些消息来源都没有提到这种可能性——我运气不好吗?

What does %w(array) mean?

What is the %w "thing" in ruby?

Ruby Programming Syntax - the % notation

最佳答案

由于 % 符号似乎是 Ruby 中处理继承的“ SCSS ”Perl 字符串之一,我对此表示强烈怀疑,但您可以通过以下方式节省几个字符

digits = %w{1 2 3 4 5 6 7 8 9 10}.map(&:to_i)

关于ruby - 是否有类似 %w{ } 的方法在 Ruby 中创建 fixnums 数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7652760/

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