facebook twitter hatena line email

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