18
この質問があまりにも愚かではないかどうかわかりませんが、それを行う方法が見つかりませんでした。Ruby:配列を印刷して整列する方法
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
それは動作しません:
は通常、私はこれを持っている場合は、この
current_humans = [.....]
current_humans.each do |characteristic|
puts characteristic
end
しかしdoループで配列を置きます。もちろん
私はこの
puts Human.current_humans.inspect
のようなものを使用することができますが、私は他の選択肢を学びたいです!
こんにちはすべき明示的なリターンを使用していない、Iこれは古いことを知っていますが、私はちょうどKatasをやっていて、このポストに出くわしました。なぜ 'p'を使わないのですか(できるだけデバッグするよりも深い説明です)?また、私は 'a 'という配列に' p a'と 'put a.inspect'を使用し、' p a'だけが働きました。何か不足していますか? – rorykoehler