區別Ruby的require,load,和include

來源:互聯網
上載者:User
文章目錄
  • Ruby - adding a directory to $LOAD_PATH - what does it do?

相同之處:三者均在kernel中定義的,均含有包含進某物之意。

不同之處:

1、requre,load用於檔案,如.rb等等結尾的檔案。

2、include則用於包含一個檔案(.rb等結尾的檔案)中的模組。

3、requre一般情況下用於載入庫檔案,而load則用於載入設定檔。

4、requre載入一次,load可載入多次。

怎麼樣,簡單吧!再看個例子。

如果說abc.rb中包含一個模組Ma,和幾個類Ca,Cb等等。那麼你若想在ef.rb檔案中使用abc.rb中的資源,你得這樣:

require 'abc.rb'

若還想在ef.rb的某個類中使用abc.rb中的模組,則應在這個類中加入

include Ma

如果你只想在ef.rb檔案的某個類中使用abc.rb的模組,你得這樣:

require 'abc.rb'

include Ma

這兩句就告訴了你它們區別。

 

Ruby - adding a directory to $LOAD_PATH - what does it do?

When you add the /Users/you/scripts/ruby directory to the load path, you can use:

require 'example'

instead of:

require '/Users/you/scripts/ruby/example.rb'
不過對於$LOAD_PATH如何進行修改沒有找到解決方案,如果在使用require進行載入的時候就需要寫全路徑才能夠載入成功,load則不需要。
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.