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 3 years have passed since last update.

[Ruby]オブジェクトについて

Posted at

■オブジェクト |

Rubyで扱える全てのデータは、「オブジェクト」と呼ばれる。
オブジェクトは 「物」 という意味で、現実世界の物をコードでも同様に捉えるようにするためのデータになる。

現実世界の"数、文字、色、時間"など、Rubyで扱う場合にはオブジェクトという形でデータ化されて、それぞれの持つ特性や動作を扱うことが可能となる。

Rubyには、よく使われるオブジェクトがはじめから用意されている。
以下。Rubyの代表的なオブジェクト。これら以外にもたくさんのオブジェクトがある。
・オブジェクト名 " 扱うもの "
・文字列オブジェクト " 文字 "
・数値オブジェクト " 数 "
・日付オブジェクト " 日付 "
・配列オブジェクト " 複数のデータ "
・時刻オブジェクト " 時間 "

0
0
2

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?