Ruby/class
提供: 初心者エンジニアの簡易メモ
2017年11月6日 (月) 00:54時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==クラスとメソッド== class TestController def hello end end ==継承の仕方== class TestController < ApplicationController def hello end end」)
クラスとメソッド
class TestController def hello end end
継承の仕方
class TestController < ApplicationController def hello end end