加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

数组 – 如何在Ruby中的Array类中对数组的每个元素进行平方?

发布时间:2020-12-17 04:17:33 所属栏目:百科 来源:网络整理
导读:我的部分代码如下: class Array def square! self.map {|num| num ** 2} self endend 我打电话的时候: [1,2,3].square! 我希望得到[1,4,9],但我得到[1,3].为什么会这样?我打电话的时候: [1,3].map {|num| num ** 2} 在课堂方法之外,我得到了正确的答案.
我的部分代码如下:
class Array
  def square!
    self.map {|num| num ** 2}
    self
  end
end

我打电话的时候:

[1,2,3].square!

我希望得到[1,4,9],但我得到[1,3].为什么会这样?我打电话的时候:

[1,3].map {|num| num ** 2}

在课堂方法之外,我得到了正确的答案.

解决方法

你必须使用 Array#map!,而不是 Array#map.

Array#map -> Invokes the given block once for each element of self.Creates a new array containing the values returned by the block.

Array#map! -> Invokes the given block once for each element of self,replacing the element with the value returned by the block.

class Array
  def square!
    self.map! {|num| num ** 2}
  end
end

[1,3].square! #=> [1,9]

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读