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 1 year has passed since last update.

100日後くらいに個人開発するぞ!day055

Posted at

今日はファイル分割とインスタンスの配列を学んでみた!

image.png

今日の学び

ファイルを分割する

  • 一部のコードを別のファイルに分割して処理することができる
  • 最初にrequire "./ファイル名"とすることで、ファイル名.rbのコードを読み込める

インスタンスの配列

  • インスタンスも配列の要素にすることができる
      • menu1 = Menu.new(name:"パン",price:500)
      • menu2 = Menu.new(name:"そば",price:700)
      • :
      • :
      • menus = [menu1,menu2,...]→配列の要素にする
      • menus.each do |menu|→each文で1つずつ表示
      • puts menu.info
      • end
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?