ruby學習--block

來源:互聯網
上載者:User

標籤:style   blog   color   ar   div   log   sp   new   ef   

 1 #當前塊 2 class Block 3     def a_method 4         return yield if block_given? 5         ‘no block‘ 6     end 7 end 8 obj=Block.new 9 puts "#{obj.a_method}"10 puts "#{obj.a_method {"here‘s a block!"}}"
 1 #閉包 2 class Greeter 3     def initialize(name) 4         @name=name 5     end 6     def name 7         @name 8     end 9     def name=(new_name)10         @name=new_name11     end12 end13 g=Greeter.new("Barney")14 puts g.name     15 g.name="Betty"16 puts g.name       
 1 #切換範圍 2 v1=1 3 class MyClass 4     v2=2 5     local_variables                     6     #puts "#{local_variables}"       #[:v2]   7     def my_method 8         v3=3 9         local_variables10         #puts "#{local_variables}"    #[:v3]11     end12     local_variables13     #puts "#{local_variables}"        #[:v2]14 15 end16 obj=MyClass.new17 obj.my_method                        #[:v3]18 puts "#{local_variables}"            #[:v1, :obj]

 

ruby學習--block

相關文章

聯繫我們

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