typ*_*ist 3 ruby block watir return-value
class MyWatir < Watir::Browser
  def with_watir_window(win)
    cw = window   #current window
    win.use
    yield
    cw.use
  end
  def qty     
    ret = nil                
    with_watir_window(@win2){
      ret = td(:id,'qty').text
    }      
    ret
  end 
end
Run Code Online (Sandbox Code Playgroud)
在第二个函数中,ret = nil在最后声明并声明它似乎很难看.是否有更清晰的方法来返回价值?
只需从块中返回内部值.还要确保如果发生异常,则保持一致状态:
class MyWatir < Watir::Browser
  def with_watir_window(win)
    cw = window   #current window
    win.use
    # the begin/end will evaluate to the value returned by `yield`.
    # if an exception occurs, the window will be reset properly and
    # there will be no return value.
    begin
      yield
    ensure
      cw.use
    end
  end
  def qty                     
    with_watir_window(@win2) do  
      td(:id,'qty').text
    end
  end 
end
Run Code Online (Sandbox Code Playgroud)