ruby
1 2 3class HelloWorld 4 def intialize(myname = "Ruby") 5 @name =mymane 6 end 7 8 def Hello 9 puts "Hellow, World. I am #{@name}" 10 end 11end 12 13bob = HelloWorld.new("Bob") 14alice = HelloWorld.new("Alice") 15ruby = HelloWorld.new() 16 17bob.Hello 18alice.Hello 19ruby.Hello 20
Traceback (most recent call last):
2: from aa.rb:13:in <main>' 1: from aa.rb:13:in
new'
aa.rb:13:in `initialize': wrong number of arguments (given 1, expected 0) (Argumen
tError)
このプログラムのどの箇所が間違っているのでしょうか?
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/04 01:41