Ruby:打印和整理数组的方法

时间:2013-04-03 10:09:27

标签: ruby arrays class puts

我不确定这个问题是否过于愚蠢,但我还没有找到办法。

通常将数组放入循环中我这样做

current_humans = [.....]
current_humans.each do |characteristic|
  puts characteristic
end

但如果我有这个:

class Human
  attr_accessor:name,:country,:sex
  @@current_humans = []

  def self.current_humans
    @@current_humans
  end

  def self.print    
    #@@current_humans.each do |characteristic|
    #  puts characteristic
    #end
    return @@current_humans.to_s    
  end

  def initialize(name='',country='',sex='')
    @name    = name
    @country = country
    @sex     = sex

    @@current_humans << self #everytime it is save or initialize it save all the data into an array
    puts "A new human has been instantiated"
  end       
end

jhon = Human.new('Jhon','American','M')
mary = Human.new('Mary','German','F')
puts Human.print

它不起作用。

当然我可以使用这样的东西

puts Human.current_humans.inspect

但我想学习其他选择!

1 个答案:

答案 0 :(得分:48)

您可以使用方法p。使用p实际上相当于在对象上使用puts + inspect

humans = %w( foo bar baz )

p humans
# => ["foo", "bar", "baz"]

puts humans.inspect
# => ["foo", "bar", "baz"]

但请记住p更像是一个调试工具,它不应该用于在正常工作流程中打印记录。

还有pp(漂亮的印刷品),但您需要先要求它。

require 'pp'

pp %w( foo bar baz )

pp可以更好地处理复杂的对象。


作为旁注,请勿使用显式返回

def self.print  
  return @@current_humans.to_s    
end

应该是

def self.print  
  @@current_humans.to_s    
end

使用2-chars缩进,而不是4。