私は今日、Python から始めて Ruby を学び始めました。
Ruby で使用しようとしている Python の例がいくつかあります。
def id():
return random.randrange(10**15,10**16)
class test:
def __init__(self):
self.id = id()
Rubyでは、私が思うに本当に奇妙な方法でこれをやろうとしてきました:
def id()
puts rand(10**15)+rand(10**16)
end
class test
def initialize(name=nil,password=nil)
@id =id()
end
end
私はそれを完全に間違っていると感じているので、アドバイスをいただければ幸いです。