在Ruby中,"$:"是什么?

20

通常出现在 .gemspec 文件中。例如:i18n.gemspec

$: << File.expand_path('../lib', __FILE__)

1
可能是在Ruby编程语言中,$:的名称是什么?的重复问题。 - Andrew Grimm
3个回答

33
Pre-defined variables
$!         The exception information message set by 'raise'.
$@         Array of backtrace of the last exception thrown.
$&         The string matched by the last successful match.
$`         The string to the left  of the last successful match.
$'         The string to the right of the last successful match.
$+         The highest group matched by the last successful match.
$1         The Nth group of the last successful match. May be > 1.
$~         The information about the last match in the current scope.
$=         The flag for case insensitive, nil by default.
$/         The input record separator, newline by default.
$\         The output record separator for the print and IO#write. Default is nil.
$,         The output field separator for the print and Array#join.
$;         The default separator for String#split.
$.         The current input line number of the last file that was read.
$<         The virtual concatenation file of the files given on command line (or from $stdin if no files were given).
$>         The default output for print, printf. $stdout by default.
$_         The last input line of string by gets or readline.
$0         Contains the name of the script being executed. May be assignable.
$*         Command line arguments given for the script sans args.
$$         The process number of the Ruby running this script.
$?         The status of the last executed child process.
$:         Load path for scripts and binary modules by load or require.
$"         The array contains the module names loaded by require.
$DEBUG     The status of the -d switch.
$FILENAME  Current input file from $<. Same as $<.filename.
$LOAD_PATH The alias to the $:.
$stderr    The current standard error output.
$stdin     The current standard input.
$stdout    The current standard output.
$VERBOSE   The verbose flag, which is set by the -v switch.
$-0        The alias to $/.
$-a        True if option -a is set. Read-only variable.
$-d        The alias to $DEBUG.
$-F        The alias to $;.
$-i        In in-place-edit mode, this variable holds the extension, otherwise nil.
$-I        The alias to $:.
$-l        True if option -l is set. Read-only variable.
$-p        True if option -p is set. Read-only variable.
$-v        The alias to $VERBOSE.
$    -w        True if option -w is set.

上述快捷方式是Perl的不幸陈旧遗留问题!有一些“英文名”可供使用,这些名称很容易理解,如果可以使用它们,则应该使用。

另请参阅:https://docs.ruby-lang.org/en/2.4.0/globals_rdoc.html


8

$:是加载路径,$LOAD_PATH是其别名。当你在ruby应用程序中load/require库/文件时,ruby会在$:列出的目录中搜索它们。使用$: << File.expand_path('../lib', __FILE__)可以将特定目录添加到加载路径。


4

$: 等同于 $LOAD_PATH,即您可以在不提供更具体的路径的情况下从中 require 文件的目录列表。您可能会发现Ruby QuickRef 对于其他预定义变量也很有用。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接