當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby InstructionSequence.compile_file用法及代碼示例


本文簡要介紹ruby語言中 RubyVM::InstructionSequence.compile_file 的用法。

用法

compile_file(file[, options]) → iseq

獲取 file ,一個帶有 Ruby 源文件位置的 String ,讀取、解析和編譯文件,並返回 iseq ,編譯後的 InstructionSequence 並設置了源位置元數據。

可選地采用 options (可以是 truefalseHash )來修改 Ruby iseq 編譯器的默認行為。

有關有效編譯選項的詳細信息,請參閱 ::compile_option=

# /tmp/hello.rb
puts "Hello, world!"

# elsewhere
RubyVM::InstructionSequence.compile_file("/tmp/hello.rb")
#=> <RubyVM::InstructionSequence:<main>@/tmp/hello.rb>

相關用法


注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 InstructionSequence.compile_file。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。