如何在Ruby中混洗数组/哈希?

前端之家收集整理的这篇文章主要介绍了如何在Ruby中混洗数组/哈希?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
出于学习目的,这叫什么?是创建对象是数组还是哈希?
stack_of_cards = []

这就是我填写它的方式:

stack_of_cards << Card.new("A","Spades",1)
stack_of_cards << Card.new("2",2)
stack_of_cards << Card.new("3",3)
...

这是我的卡类:

class Card

  attr_accessor :number,:suit,:value

  def initialize(number,suit,value)
    @number = number
    @suit = suit
    @value = value
  end

  def to_s
    "#{@number} of #{@suit}"
  end
end

我想改组这个数组/哈希中的元素(这叫做什么?:S)

有什么建议?

解决方法

stack_of_cards.shuffle

它是一个数组,有关详细信息,请参阅http://www.ruby-doc.org/core-1.8.7/classes/Array.html.

我已经编写了functional表单,它返回一个新的数组,并且它是一个新的数据.您可以改为使用:

stack_of_cards.shuffle!

……将阵列原位洗牌.

原文链接:https://www.f2er.com/ruby/269269.html

猜你在找的Ruby相关文章