Ruby如何优化继承类
来源:爱站网时间:2021-01-05编辑:网友分享
这篇文章主要介绍了Ruby优化继承类实例,本文直接给出一个优化实例及实现代码,需要的朋友可以参考下
在ruby中我们经常会需要优化继承类,优化继承类可以丰富Model,但是也有很多用户们不知道Ruby如何优化继承类的,那么下面小编将用一个示例展示一个简单的继承优化。
假设我们有如下的Model
复制代码 代码如下:
class SubjectMatterExpert include HashCodeCreatorModule
def make_activation_code
self.deleted_at = nil
self.activation_code ||= make_hash_code
end
end
class Administrator include HashCodeCreatorModule
def make_activation_code
self.deleted_at = nil
self.activation_code ||= make_hash_code
end
end
我们可以通过继承的使用简化代码如下SubjectMatterExpert Administrator
复制代码 代码如下:
class SubjectMatterExpert end
class Administrator end
class User
include HashCodeCreatorModule
def make_activation_code
self.deleted_at = nil
self.activation_code ||= make_hash_code
end
那么我们也可以在测试中这么使用:
复制代码 代码如下:
it 'should create an activation code' do
admin = Factory(:administrator)
admin.make_activation_code
admin.activation_code.should_not be_empty
end
上文就是小编介绍Ruby如何优化继承类的内容,特别是method里有一个写变化的self变量的时候这个方法是很实用的。