Ruby self在不同環境的含義

來源:互聯網
上載者:User

而由於ruby作為一個完全純淨的物件導向語言,任何東東都是對象,方法是對象,類也是對象...,所以self就會有很多環境,區分不同環境的self含義才能更好的理解程式的含義
一、Top Level Context
Ruby代碼
puts self
列印出main,這個代表Object的預設對象main.
二、在class或module的定義中:
在class和module的定義中,self代表這個class或這module對象:
Ruby代碼
class S
puts 'Just started class S'
puts self
module M
puts 'Nested module S::M'
puts self
end
puts 'Back in the outer level of S'
puts self
end
輸出結果:
寫道
>ruby self1.rb
Just started class S
Nested module S::M
S::M
Back in the outer level of S
>Exit code: 0
三、在執行個體的方法定義中:
這點和java的this代表的東東一樣:程式自動傳遞的調用這個方法的對象
Java代碼
class S
def m
puts 'Class S method m:'
puts self
end
end
s = S.new
s.m
運行結果:
寫道
>ruby self2.rb
Class S method m:
#<S:0x2835908>
>Exit code: 0
四、在單例方法或者類方法中:
單例方法是針對一個對象添加的方法,只有這個對象擁有和訪問這個方法,這時候self是擁有這個方法的對象:
Ruby代碼
# self3.rb
obj = Object.new
def obj.show
print 'I am an object: '
puts "here's self inside a singleton method of mine:"
puts self
end
obj.show
print 'And inspecting obj from outside, '
puts "to be sure it's the same object:"
puts obj
運行結果:
寫道
ruby self3.rb
I am an object: here's self inside a singleton method of mine:
#<Object:0x2835688>
And inspecting obj from outside, to be sure it's the same object:
#<Object:0x2835688>
>Exit code: 0
在類方法中self代表這個類對象:
Ruby代碼
# self4.rb
class S
def S.x
puts "Class method of class S"
puts self
end
end
S.x
運行結果:
寫道
>ruby self4.rb
Class method of class S
>Exit code: 0
從上面的例子我們可以看出不管是ruby的self還是java的this都表示在當前的環境下你可以訪問的當前的或者預設的對象。
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.