好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > Ruby 中的 module_function 和 extend self異同

Ruby 中的 module_function 和 extend self異同

熱門標簽:買了外呼系統不想用了怎么辦 開封百應電銷機器人聯系方式 武漢呼叫中心外呼系統線路商 浦東上海400開頭的電話申請 樂昌電話機器人 真人語音電銷機器人系統 邯鄲外呼調研線路 電話機器人電話卡封號怎么辦 北京語音電銷機器人價格

在閱讀開源的 Ruby 代碼和編寫可維護性的代碼經常遇到這兩者的使用,那么他們兩者的共同點和區別是什么呢?

module_function

Ruby 的 module 是 method 和 constants 的集合。module 中的method 又可分為 instance method 和 module method, 當一個 module 被 include 進一個 class ,那么 module 中的 method (注:沒有被 module_function 標記的 method)就是 class 中的 instance method, instance method 需要所在的 class 被實例化之后才能被調用;被 module_function 標記的 method(不管該 method 是 public 或者 private)就是 module method 且 instance method 也會變成 private method,對于被 include 所在的 class 來說是 private method,object.module_name 會出錯。module method 都能被 module_name.method_name 調用,沒有被 module_function 標記的 public method 不能被 module_name.method_name 調用。

module 中的 module_function 會把 module 中的 method 變成 module method 且對于被 include 所在的 class 來說,module method 在 module 中是 private method 故 module_name.module_method 能調用,而不能被 object.module_name 調用。

module 中的 public method 對于被 include 所在的 class 來說是 instance method,故 object.public_method_in_module 能調用。如果想要非 module method 能夠被 module 調用(module_name.not_module_method) ,需要引入 extend self (下文會討論 extend self)

# test.rb
module MyModule
 def public_meth
  p "a public method, if the module is included to a class , can be call as object.public_meth"
 end
 def module_method
  p "a module method,can be called as module_name.module_method. but can not be call as object.module_method"
 end
 private
 def private_method_to_module_function
  p "a private_method, but can be call as module_name.module_method, because it was assigned to module_function"
 end
 def private_method
  p "I am a private method"
 end
 module_function :module_method, :private_method_to_module_function
end

MyModule.module_method
MyModule.private_method_to_module_function
begin
 MyModule.public_meth
rescue
 p "public method can not be called by module_name.public_meth"
end
begin
 MyModule.private_method
rescue NoMethodError
 p "private method can not be called by module_name.module_method"
end

class MyClass
 include MyModule
end

obj = MyClass.new
obj.public_meth

begin
 obj.private_method
rescue NoMethodError
 p "private method in module can not be call by object.method_name"
end

begin
 obj.module_method
rescue NoMethodError
 p "module method can not be called by object.method_name, for object, module method is private instance method"
end

#調用
ruby test.rb
"a module method,can be called as module_name.module_method. but can not be call as object.module_method"
"a private_method, but can be call as module_name.module_method, because it was assigned to module_function"
"public method can not be called by module_name.public_meth"
"private method can not be called by module_name.module_method"
"a public method, if the module is included to a class , can be call as object.public_meth"
"private method in module can not be call by object.method_name"
"module method can not be called by object.method_name, for object, module method is private instance method"

總結就是

•The method will be copied to class' singleton class
•The instance method's visibility will become private

extend self

Include is for adding methods to an instance of a class and extend is for adding class methods

extend 本質是給 class 或者 module 添加 class method

extend self 讓 module 中的 instance method 能夠被 module_name.instance_method 調用,保留 module 中原本 method 的 public 或 private 屬性,但又不像 module_function 一樣把被標記的 method 變成 private 。

#!/usr/bin/env ruby
# encoding: utf-8
# test_extend.rb
module MyModule
 extend self
 def public_meth
  p "a public_method extended by self can be called by module_name.public_meth and object.public_meth, included by a class"
  private_method
 end
 private
 def private_method
  p "a private method, can be call in module internal"
 end
end

class MyClass
 include MyModule
end

MyModule.public_meth

begin
 MyModule.private_method
rescue NoMethodError
 p "private method in extend self module can not be called module_name.private_method"
end

obj = MyClass.new
obj.public_meth

begin
 obj.private_method
rescue NoMethodError
 p "private method can not be called by object.private_method"
end

# 調用 ruby test_extend.rb
"a public_method extended by self can be called by module_name.public_meth and object.public_meth, included by a class"
"a private method, can be call in module internal"
"private method in extend self module can not be called module_name.private_method"
"a public_method extended by self can be called by module_name.public_meth and object.public_meth, included by a class"
"a private method, can be call in module internal"
"private method can not be called by object.private_method"

總結就是:
•No method copying involved
•No changes to method visibility

總結

module_function 改變 module 內 原來 method 的 public/private 屬性并把改 method 變成 module method ,能夠被 module_name.module_method 調用。

extend self 就是在 module 自繼承,不改變 module 中 method 的 public/private 屬性,能夠被 module_name.public_method

您可能感興趣的文章:
  • Ruby中require、load、include、extend的區別介紹

標簽:松原 宜春 鄂州 自貢 石嘴山 淄博 河北 六安

巨人網絡通訊聲明:本文標題《Ruby 中的 module_function 和 extend self異同》,本文關鍵詞  Ruby,中的,module,function,和,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Ruby 中的 module_function 和 extend self異同》相關的同類信息!
  • 本頁收集關于Ruby 中的 module_function 和 extend self異同的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 舌头伸进去添的我爽高潮| 少女3电影在线观看| 国产AV人人爽96人人爱| 香蕉久久夜色精品国产2020| 久久啪日日躁夜夜爽无码| 小x福利视频导航| 377p日本大胆欧美人术艺术 | 91国偷自产一区二区三区蜜芽| 被调教的尤物秘书| 欧美成年人视频| 综合色99| 美人受np古代贵公子| 少妇婬荡呻吟揉捏丰满奶头动态| 1级a试看1分钟| 诱人的上司hd在线观看| 亚洲香蕉国产高清在线播放 | 婷婷网色情偷偷亚洲男人的天堂| 亚洲美女自拍| 拉拉h全文肉肉| 性欧美高清video| 1000免费一级无码婬片| 久久午夜无码鲁丝片秋霞欧美AV6| 欧美性AV兔费XXXXXXX| 在线一级黄色片| 特黄免费| 女人抠逼视频| 国产美女又黄又爽又色视频网站| 欧美大香线蕉线伊人久久| bl肉短篇高H合集| China亂伦丰满人妻Av| 国产精品久久亚洲一区二区| 欧美性大战久久久久久久蜜桃 | 欧美影院入口| 国模冰冰大胆瓣开下部| 在线激情网| 任我爽橹在线精品短视频 | 成年无码视频AV片在线勿尤| 日韩大胆视频| 人与禽性视频77777图片| 亚洲波多野结衣AV| 国内视频一区二区|