4.17.5. Metody třídy

Metody třídy jsou metody samotné třídy nikoliv jejich objektů.

# File: session/class-methods.ses
class Test
    def Test.hello
        puts "Hello world!"
    end
end
nil

Test.hello
Hello world!
nil
# File: session/class-methods2.ses
class Test
    def self.hello
        puts "Hello world!"
    end
end
nil

Test.hello
Hello world!
nil
Licence Creative Commons
Tento dokument Ruby, jehož autorem je Radek Hnilica, podléhá licenci Creative Commons Uveďte autora-Nevyužívejte dílo komerčně-Zachovejte licenci 3.0 Česká republika .