「Ruby/class」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→プロパティ付きクラス) |
(→プロパティ属性) |
||
行31: | 行31: | ||
attr_writer :name 更新が可能 | attr_writer :name 更新が可能 | ||
attr_accessor :name 参照と更新が可能 | attr_accessor :name 参照と更新が可能 | ||
+ | |||
+ | ==staticクラス== | ||
+ | math_utility.rb | ||
+ | module MathUtility | ||
+ | extend self | ||
+ | def plus(num, num) | ||
+ | return num + num | ||
+ | end | ||
+ | end | ||
+ | |||
+ | 呼び出し | ||
+ | MathUtility.plus(1, 2) |
2017年11月8日 (水) 11:43時点における版
クラスとメソッド
class TestController def hello end end
継承の仕方
class TestController < ApplicationController def hello end end
プロパティ付きクラス
class TestService def initialize(name) @name = name end def exec() return @name end attr_accessor :name end
上記呼び出し
service = TestService.new("test1") service.exec() # test1 service.name # test1
プロパティ属性
attr_reader :name 参照が可能 attr_writer :name 更新が可能 attr_accessor :name 参照と更新が可能
staticクラス
math_utility.rb
module MathUtility extend self def plus(num, num) return num + num end end
呼び出し
MathUtility.plus(1, 2)