使用defineu方法定义实例和类方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用defineu方法定义实例和类方法相关的知识,希望对你有一定的参考价值。
class Example class << self define_method(:one) { puts 'one' } define_method(:two) { puts 'two' } end define_method(:three) { puts 'three' } define_method(:four) { puts 'four' } end Example.one #=> one Example.two #=> two Example.new.three #=> three Example.new.four #=> four
以上是关于使用defineu方法定义实例和类方法的主要内容,如果未能解决你的问题,请参考以下文章