Ruby类函数定义的几种方式

[size=large]Ruby类函数定义的几种方式[/size]
参考:[url=http://blog.jayfields.com/2007/10/ruby-defining-class-methods.html]ruby-defining-class-methods[/url]

1、
class Person
def Person.find(id)
...
end
end

这种方式,有一点不好,如果更改类名,相应的类函数定义的类名也要更改。
2、
class Person
def self.find(id)
...
end
end

这种方式比较好,没有上面提到的问题。作者也推荐使用这种方式。
3、
class Person
class << self
protected
def find(id)
...
end
end
end

在定义protected类函数时使用。为什么要定义protected类函数可参见作者的另一篇文章[url=http://blog.jayfields.com/2006/11/ruby-protected-class-methods.html]Protected Class Methods[/url]。
4、比较复杂的
class Object # http://whytheluckystiff.net/articles/seeingMetaclassesClearly.html
def meta_def name, &blk
(class << self; self; end).instance_eval { define_method name, &blk }
end
end

class Service
def self.responses(hash)
hash.each do |method_name, result|
meta_def method_name do
result
end
end
end

responses :success => 20, :unreachable => 23
end

Service.success # => 20
Service.unreachable # => 23

由于本人Ruby功力还不够,上面的代码有些还看不明,有兴趣的读者可直接看原文。
5、最后作者还提到一种方式
class Person
instance_eval do
def find(id)
...
end
end
end

用到instance_eval,没搞清楚这种方式有什么特点。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值