0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

変数、定数について (Ruby)

Posted at

#変数とは...
任意の名前で作られた、オブジェクトを格納することができるもの。
また、定義しなおせば何度でも格納したオブジェクトを更新することができる。

###命名規則
・頭文字は小文字にする
・頭文字以外には大文字も使える
・スペースを入れてはいけない
・予約語(Rubyに初めから与えられた単語)

(例)
text (変数) = "今日も勉強頑張った" (オブジェクト)
puts text
=>今日も勉強頑張った

text = "明日も勉強頑張るぞ"
puts text
=>明日も頑張るぞ

#定数とは...
任意の名前で作られた、オブジェクトを格納することができるもの。
しかし、変数とは異なり、はじめに定義したオブジェクトを変更することはできない。

###命名規則
・頭文字は必ず大文字にする
・スペースを入れてはいけない
・予約語(Rubyに初めから与えられた単語)

(例)
text (定数) = "今日も勉強頑張った"
puts = text
=>今日も勉強頑張った

0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?