如何在Ruby中定义/命名块?

前端之家收集整理的这篇文章主要介绍了如何在Ruby中定义/命名块?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
numbers = 1..10
print numbers.map {|x| x*x}

# I want to do:
square = {|x| x*x}
print numbers.map square

因为语法更简洁.我有办法做到这一点,而不必使用def end?

解决方法

square = proc {|x| x**2 }
print number.map(&square)
原文链接:https://www.f2er.com/ruby/269461.html

猜你在找的Ruby相关文章