總結一下工作中遇到的類擴展:
1、類繼承:
當多個類公用很多方法的時候可以將公用方法部分抽取出來,需要的類做相關繼承。
例子:
復制代碼 代碼如下:
class A ActiveRecord::Base
def a
p "it was a "
end
end
class BA
end
class CA
end
B.new.a #=>"it was a "
C.new.a #=>"it was a "
2、抽象類
當多個類要繼承一個類時,用第一種方法,會遇到一個問題。
(引用一個別人的注解來描述抽象類的運用吧https://ihower.tw/rails4/activerecord-others.html)
單一表格繼承STI(Single-table inheritance)
如何將物件導向中的繼承概念,對應到關聯式資料庫的設計,是個大哉問。Rails內建了其中最簡單的一個解法,只用一個資料表儲存繼承體系中的物件,搭配一個type欄位用來指名這筆資料的類別名稱。
要開啟STI功能,依照慣例只要有一個欄位叫做type,型態(tài)字串即可。假設以下的posts資料表有欄位叫做type,那麼這三個Models實際上就會共用posts一個資料表,當然,還有這兩個子類別也都繼承到父類別的validates_presence_of :subject:
復制代碼 代碼如下:
class Post ActiveRecord::Base
validates_presence_of :subject
end
class GuestPost Post
end
class MemberPost Post
end
讓我們進入rails console實驗看看,Rails會根據你使用的類別,自動去設定type欄位:
復制代碼 代碼如下:
post = GuestPost.create( :subject => "guest")
post.type # "GuestPost"
post.id # 1
post = MemberPost.create( :subject => "member" )
post.id # 2
post.type # "MemberPost"
GuestPost.last # 1
很遺憾,也因為這個慣例的關係,你不能將type這麼名字挪做它用。
STI最大的問題在於欄位的浪費,如果繼承體系中交集的欄位不多,那麼使用STI就會非常的浪費空間。如果有較多的不共用的欄位,筆者會建議不要使用這個功能,讓個別的類別有自己的資料表。要關閉STI,請父類別加上self.abstract_class = true
復制代碼 代碼如下:
class Post ActiveRecord::Base
self.abstract_class = true
end
class GuestPost Post
end
class MemberPost Post
end
這裡的GuestPost和MemberPost就需要有自己的Migrations建立guest_posts和member_posts資料表。
你還可以在某個類中,引入多個依賴
復制代碼 代碼如下:
class DependencyPost
require_dependency 'guestpost'
require_dependency 'memberpost'
end
3、類拓展混入
ruby的類是單繼承的,要實現多繼承的功能需要用mixin(參合模式)的方式,即類拓展混入來實現。例子:
復制代碼 代碼如下:
module Extract
def self.included(base)
base.extend(ClassMethods)
end
module ClassMethods
def a
p "it was a "
end
end
end
class AActiveRecord::Base
include Extract
end
A.new.a #=>"it was a"
4、代理類
當某個功能是比較復雜的,當然寫再lib中,作為一個面向函數的方法去處理很簡單,也可以用代理類的方式實現面向對象的調用。
例子:
復制代碼 代碼如下:
class AActiveRecord::Base
def generate_schedule
generator = Generator::ExcelGenerator.new(self)
generator.generate_schedule
end
end
module Generator
class ExcelGenerator
attr_reader :excel,:workbook,:a,:worksheet
attr_accessor :styles
def initialize(a)
@excel ||= Axlsx::Package.new
@workbook ||= @excel.workbook
@worksheet = @workbook.add_worksheet(:name => '測試生成一個excel文件')
@a ||= a
@styles ||= Hash.new
end
def generate_schedule
#excel內容的具體定義
end
end
end
A.new.generate_schedule 就可以通過代理類ExcelGenerator實現一個A的類實例方法generate_schedule
當然也可以通過include 一個model的方式實現添加類實例方法,有時候也可以混合使用。另外使用代理類的好處在于多個類都需要相同方法的時候可以定義共同的部分,舉一個發(fā)郵件的例子:
復制代碼 代碼如下:
class AActiveRecord::Base
include SendEmail
end
class BActiveRecord::Base
include SendEmail
end
實現引入模塊:
復制代碼 代碼如下:
module SendEmail
#include this module to class::A and B
#use like that-- A.first.send_email
def send_email
Email.call_email(self)
end
end
實現代理類:
復制代碼 代碼如下:
class Email ActionMailer::Base
default :from => "test@email.com"
def self.call_email(obj)
define_method "#{obj.state}" do |obj|
@obj = obj
mail(:to => @obj.email, :subject => "XX標題" )
end
send("#{obj.state}").deliver
#根據不同對象obj.state得到不同狀態(tài)下,定義不同方法,然后send派發(fā)調用相關對象狀態(tài)的模板。
end
end
RUBY很靈活當然還有很多其他的方法實現更多的方式,以后再慢慢總結。
您可能感興趣的文章:- Ruby最簡單的消息服務器代碼
- 淺析Ruby中繼承和消息的相關知識