传灭虫 发表于 2014-9-4 14:38 你要往里面塞什么
module Graphics @update = method('update') if @update.nil? def self.update # 这里执行你自己的代码 @update.call endend
module Graphics @update = method('update') if @update.nil? def self.update # 这里执行你自己的代码 @update.call end end
class << Graphics alias old_update update def update old_update # ... endend
class << Graphics alias old_update update def update old_update # ... end end