1
2

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.

継承の階層について(初心者)

Posted at

継承の階層について(初心者)

目的

モデルクラスやコントローラーがどのような形で基本クラスを継承しているのかまとめておきたいと思ったから

モデルクラスの継承

ActiveRecord::Baseという基本クラスを継承することによって、作成したモデルオブジェクトは
データベースにアクセスできるようになり、データベースのカラムをあたかもRubyの属性のように扱えるようになる。

スクリーンショット 2017-04-23 14.14.16.png

コントローラの継承

コントローラの継承構造も、モデルの継承構造と本質的には同じ。
このクラスは、RailsのAction Packというライブラリが提供しているコントローラの基本クラス。

スクリーンショット 2017-04-23 14.15.23.png

1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?