LoginSignup
2
0

More than 5 years have passed since last update.

[Ruby]defについて

Posted at

defを使うとメソッドが作れる

「こんにちわー」と表示する、helloメソッドを作るとするなら

def hello
    puts "こんにちわー"
end

hello         #←helloメソッドを呼び出している

通常、プログラムを実行させると上から順に実行されますが、 def と end の間はメソッドの定義なので呼び飛ばされます。最初にhelloメソッドが実行されて、def と end の間の処理が行われて「こんにちわー」が表示されます。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0