Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

Ruby | メソッド | クラスメソッド

パンくず

Ruby
クラスメソッド

概要

Rubyのクラスメソッドについて

内容

クラス名+メソッド名でクラスメソッドを定義できます。

def ClassName.method_name
  # logic
end

サンプルコード

# encoding: Windows-31J

class Hoge
  def Hoge.print_hoge
    puts "Hoge"
  end
end

Hoge.print_hoge

出力

Hoge