Ruby Proc 和 lambda的共同點和區別

來源:互聯網
上載者:User

標籤:

Proc 和 lambda 的共同點:

  • 文法類似
    Proc.new{|n| n**2}

    lambda{|n| n**2}

  • 都可以用.call方法調用

    hello_proc = Proc.new{ puts "Hello!" }
    hello_proc.call #Hello!
    hello_lambda = lambda{ puts "Hello!" }
    hello_lambda.call #Hello!

  • 都可以用&關鍵字把各自轉換為block
    nums = [1,3,4,5,6]
    cube_proc = Proc.new{ |n| n**3 }
    cube_nums_proc = nums.map(&cube_proc) #[1,27,64...]

    cube_lambda = lambda{ |n| n**3 }
    cube_nums_lambda = nums.map(&cube_lambda) #[1,27,64...]

  • 兩者都是Object

Proc 和 lambda 的區別:

  1. lambda檢查傳入的參數,如果傳入不正確的參數就throw an error; Proc 則不檢查,即使傳入不正確的參數也只會忽視它,並把nil賦值給結果(assign nil to any that are missing.)。
  2. lambda返回時把控制權交還給它的調用函數,而Proc則不會交換。

    def batman_ironman_proc
    victor = Proc.new { return "Batman will win!" }
    victor.call
    "Iron Man will win!"
    end

    puts batman_ironman_proc

    def batman_ironman_lambda
    victor = lambda { return "Batman will win!" }
    victor.call
    "Iron Man will win!"
    end

    puts batman_ironman_lambda

    輸出結果====》Batman will win!
                          Iron Man will win! 

Ruby Proc 和 lambda的共同點和區別

相關文章

聯繫我們

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