SlideShare a Scribd company logo
第 5 回 Meta Programing Ruby勉強
会
Taiji.Miyabe
2
要するに「シングルトン」
1つのインスタンスしか存在しないクラ
ス
3
Classもオブジェクトなので、特異メソッド
を追加すると、意味としては、クラスメ
ソッドを追加したことになる
こんな感じ
1.9.3-head :161 > class MyClass
1.9.3-head :162?> class << self
1.9.3-head :163?> def test
1.9.3-head :164?> puts "test ok"
1.9.3-head :165?> end
1.9.3-head :166?> end
1.9.3-head :167?> end
=> nil
1.9.3-head :168 > MyClass.test
test ok
以下と同じ
class MyClass
def self.test
puts “test ok”
end
end

More Related Content

PDF
Storytelling For The Web: Integrate Storytelling in your Design Process
PDF
Artificial Intelligence, Data and Competition – SCHREPEL – June 2024 OECD dis...
PDF
2024 Trend Updates: What Really Works In SEO & Content Marketing
PDF
リアルタイム分析サービス『たべみる』を支える高可用性アーキテクチャ
PDF
Amazon Redshiftによるリアルタイム分析サービスの構築
PDF
Cookpad TechConf 2016 - DWHに必要なこと
PPTX
Data pipiline for big data platform based on sql
PPTX
Java fx勉強会lt 第8回
Storytelling For The Web: Integrate Storytelling in your Design Process
Artificial Intelligence, Data and Competition – SCHREPEL – June 2024 OECD dis...
2024 Trend Updates: What Really Works In SEO & Content Marketing
リアルタイム分析サービス『たべみる』を支える高可用性アーキテクチャ
Amazon Redshiftによるリアルタイム分析サービスの構築
Cookpad TechConf 2016 - DWHに必要なこと
Data pipiline for big data platform based on sql
Java fx勉強会lt 第8回
Ad

Meta ruby#5