孤独的猫

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

class File

  def File.Open(*args)

    result=f=File.new(*args)

    if block_given?

    begin

      result=yield f

    ensure

      f.close

    end

    return result

  end

end

 

注: ensure用于必定要执行的语句

posted on 2012-03-26 20:21  孤独的猫  阅读(701)  评论(0编辑  收藏  举报