1. Trang chủ
  2. » Công Nghệ Thông Tin

HandBooks Professional Java-C-Scrip-SQL part 231 pot

6 47 0

Đang tải... (xem toàn văn)

THÔNG TIN TÀI LIỆU

Nội dung

Chapter 3. Built-in Library Reference We will now explore the core functionality that is built into the standard Ruby interpreter. You will find descriptions of more than 800 built-in methods in 42 classes and modules. Topics covered include predefined variables, predefined global constants, and built-in functions. Top Ruby in a Nutshell By Yukihiro Matsumoto Chapter 3. Built - in Library Reference 3.1 Predefined Variables Ruby's predefined (built-in) variables affect the behavior of the entire program, so their use in libraries isn't recommended. The values in most predefined variables can be accessed by alternative means. $! The last exception object raised. The exception object can also be accessed using => in rescue clause. $@ The stack backtrace for the last exception raised. The stack backtrace information can retrieved by Exception#backtrace method of the last exception. $/ The input record separator (newline by default). gets, readline, etc., take their input record separator as optional argument. $\ The output record separator (nil by default). $, The output separator between the arguments to print and Array#join (nil by default). You can specify separator explicitly to Array#join. $; The default separator for split (nil by default). You can specify separator explicitly for String#split. $. The number of the last line read from the current input file. Equivalent to ARGF.lineno. $< Synonym for ARGF. $> Synonym for $defout. $0 The name of the current Ruby program being executed. $$ The process.pid of the current Ruby program being executed. $? The exit status of the last process terminated. $: Synonym for $LOAD_PATH. $DEBUG True if the -d or debug command-line option is specified. $defout The destination output for print and printf ($stdout by default). $F The variable that receives the output from split when -a is specified. This variable is set if the -a command-line option is specified along with the -p or -n option. $FILENAME The name of the file currently being read from ARGF. Equivalent to ARGF.filename. $LOAD_PATH An array holding the directories to be searched when loading files with the load and require methods. $SAFE The security level. See Top Ruby in a Nutshell By Yukihiro Matsumoto Chapter 3. Built - in Library Reference 3.2 Predefined Global Constants TRUE, FALSE, and NIL are backward-compatible. It's preferable to use true, false, and nil. TRUE Synonym for true. FALSE Synonym for false. NIL Synonym for nil. ARGF An object providing access to virtual concatenation of files passed as command-line arguments or standard input if there are no command-line arguments. A synonym for $<. ARGV An array containing the command-line arguments passed to the program. A synonym for $*. DATA An input stream for reading the lines of code following the __END__ directive. Not defined if __END__ isn't present in code. ENV A hash-like object containing the program's environment variables. ENV can be handled as a hash. RUBY_PLATFORM A string indicating the platform of the Ruby interpreter, e.g., i686-linux . RUBY_RELEASE_DATE A string indicating the release date of the Ruby interpreter, e.g., 2001-09- 19. RUBY_VERSION A string indicating the version of the Ruby interpreter, e.g., 1.6.5. STDERR Standard error output stream. Default value of $stderr. STDIN Standard input stream. Default value of $stdin. STDOUT Standard output stream. Default value of $stdout. TOPLEVEL_BINDING A Binding object at Ruby's top level.

Ngày đăng: 06/07/2014, 04:20

TÀI LIỆU CÙNG NGƯỜI DÙNG

  • Đang cập nhật ...

TÀI LIỆU LIÊN QUAN