39

我是红宝石的新手,我正在玩 IRB。

我发现我可以使用“.methods”方法列出对象的方法,并且 self.methods 有点给了我想要的东西(类似于 Python 的 dir( builtins )?),但是我怎样才能找到一个我通过 include 和 require 加载的库/模块?

irb(main):036:0* self.methods
=> ["irb_pop_binding", "inspect", "taguri", "irb_chws", "clone", "irb_pushws", "public_methods", "taguri=", "irb_pwws",
"public", "display", "irb_require", "irb_exit", "instance_variable_defined?", "irb_cb", "equal?", "freeze", "irb_context
", "irb_pop_workspace", "irb_cwb", "irb_jobs", "irb_bindings", "methods", "irb_current_working_workspace", "respond_to?"
, "irb_popb", "irb_cws", "fg", "pushws", "conf", "dup", "cwws", "instance_variables", "source", "cb", "kill", "help", "_
_id__", "method", "eql?", "irb_pwb", "id", "bindings", "send", "singleton_methods", "popb", "irb_kill", "chws", "taint",
 "irb_push_binding", "instance_variable_get", "frozen?", "irb_source", "pwws", "private", "instance_of?", "__send__", "i
rb_workspaces", "to_a", "irb_quit", "to_yaml_style", "irb_popws", "irb_change_workspace", "jobs", "type", "install_alias
_method", "irb_push_workspace", "require_gem", "object_id", "instance_eval", "protected_methods", "irb_print_working_wor
kspace", "irb_load", "require", "==", "cws", "===", "irb_pushb", "instance_variable_set", "irb_current_working_binding",
 "extend", "kind_of?", "context", "gem", "to_yaml_properties", "quit", "popws", "irb", "to_s", "to_yaml", "irb_fg", "cla
ss", "hash", "private_methods", "=~", "tainted?", "include", "irb_cwws", "irb_change_binding", "irb_help", "untaint", "n
il?", "pushb", "exit", "irb_print_working_binding", "is_a?", "workspaces"]
irb(main):037:0>

我习惯了 python,我使用 dir() 函数来完成同样的事情:

>>> dir()
['__builtins__', '__doc__', '__name__', '__package__']
>>>
4

7 回答 7

48

我不完全确定您所说的“当前对象”是什么意思。正如已经提到的,您可以遍历 ObjectSpace。但这里有一些其他方法。

local_variables
instance_variables
global_variables

class_variables
constants

有一个问题。必须在正确的范围内调用它们。所以就在 IRB 中,或者在对象实例中或在类范围内(基本上到处都是),您可以调用前 3 个。

local_variables #=> ["_"]
foo = "bar"
local_variables #=> ["_", "foo"]
# Note: the _ variable in IRB contains the last value evaluated
_ #=> "bar"

instance_variables  #=> []
@inst_var = 42
instance_variables  #=> ["@inst_var"]

global_variables    #=> ["$-d", "$\"", "$$", "$<", "$_", ...]
$"                  #=> ["e2mmap.rb", "irb/init.rb", "irb/workspace.rb", ...]

但是,嗯,如果你想让你的程序真正评估它们而不需要你多次输入它们怎么办?诀窍是评估。

eval "@inst_var" #=> 42
global_variables.each do |v|
  puts eval(v)
end

开头提到的 5 个中的最后 2 个必须在模块级别进行评估(类是模块的后代,因此可以工作)。

Object.class_variables #=> []
Object.constants #=> ["IO", "Duration", "UNIXserver", "Binding", ...]

class MyClass
  A_CONST = 'pshh'
  class InnerClass
  end
  def initialize
    @@meh = "class_var"
  end
end

MyClass.constants           #=> ["A_CONST", "InnerClass"]
MyClass.class_variables     #=> []
mc = MyClass.new
MyClass.class_variables     #=> ["@@meh"]
MyClass.class_eval "@@meh"  #=> "class_var"

这里还有一些技巧可以在不同的方向上进行探索

"".class            #=> String
"".class.ancestors  #=> [String, Enumerable, Comparable, ...]
String.ancestors    #=> [String, Enumerable, Comparable, ...]

def trace
  return caller
end
trace #=> ["(irb):67:in `irb_binding'", "/System/Library/Frameworks/Ruby...", ...]
于 2008-10-25T06:18:48.637 回答
29

ObjectSpace.each_object可能是您正在寻找的。

要获取包含模块的列表,您可以使用Module.included_modules

您还可以使用object.respond_to 逐个检查对象是否响应方法?.

于 2008-10-23T08:13:27.637 回答
6

dir()方法没有明确定义...

注意:因为dir()主要是为了方便在交互式提示中使用而提供的,所以它尝试提供一组有趣的名称,而不是尝试提供一组严格或一致定义的名称,并且其详细行为可能会随版本而变化。

...但我们可以在 Ruby 中创建一个近似值。让我们创建一个方法,该方法将返回由包含模块添加到我们范围内的所有方法的排序列表。我们可以通过该方法获取已包含的模块列表included_modules

比如dir(),我们想忽略“默认”方法(比如print),我们还想关注“有趣”的名称集。因此,我们将忽略 中的方法Kernel,并且我们只会返回直接在模块中定义的方法,而忽略继承的方法。我们可以通过传入方法来完成false后者methods()。把它们放在一起,我们得到...

def included_methods(object=self)
  object = object.class if object.class != Class
  modules = (object.included_modules-[Kernel])
  modules.collect{ |mod| mod.methods(false)}.flatten.sort
end

您可以向它传递一个类、一个对象或什么都不传递(它默认为当前范围)。让我们试一试...

irb(main):006:0> included_methods
=> []
irb(main):007:0> include Math
=> Object
irb(main):008:0> included_methods
=> ["acos", "acosh", "asin", "asinh", "atan", "atan2", "atanh", "cos", "cosh", "erf", "erfc", "exp", "frexp", "hypot", "ldexp", "log", "log10", "sin", "sinh", "sqrt", "tan", "tanh"]

dir()还包括本地定义的变量,这很容易。只要打电话...

local_variables

...不幸的是,我们不能只添加local_variables调用,included_methods因为它会给我们included_methods方法本地的变量,这不会很有用。因此,如果您想要包含在 included_methods 中的局部变量,只需调用...

 (included_methods + local_variables).sort
于 2008-10-24T02:13:05.523 回答
6

我为此写了一个宝石:

$ gem install method_info
$ rvm use 1.8.7 # (1.8.6 works but can be very slow for an object with a lot of methods)
$ irb
> require 'method_info'
> 5.method_info
::: Fixnum :::
%, &, *, **, +, -, -@, /, <, <<, <=, <=>, ==, >, >=, >>, [], ^, abs,
div, divmod, even?, fdiv, id2name, modulo, odd?, power!, quo, rdiv,
rpower, size, to_f, to_s, to_sym, zero?, |, ~
::: Integer :::
ceil, chr, denominator, downto, floor, gcd, gcdlcm, integer?, lcm,
next, numerator, ord, pred, round, succ, taguri, taguri=, times, to_i,
to_int, to_r, to_yaml, truncate, upto
::: Precision :::
prec, prec_f, prec_i
::: Numeric :::
+@, coerce, eql?, nonzero?, pretty_print, pretty_print_cycle,
remainder, singleton_method_added, step
::: Comparable :::
between?
::: Object :::
clone, to_yaml_properties, to_yaml_style, what?
::: MethodInfo::ObjectMethod :::
method_info
::: Kernel :::
===, =~, __clone__, __id__, __send__, class, display, dup, enum_for,
equal?, extend, freeze, frozen?, hash, id, inspect, instance_eval,
instance_exec, instance_of?, instance_variable_defined?,
instance_variable_get, instance_variable_set, instance_variables,
is_a?, kind_of?, method, methods, nil?, object_id, pretty_inspect,
private_methods, protected_methods, public_methods, respond_to?, ri,
send, singleton_methods, taint, tainted?, tap, to_a, to_enum, type,
untaint
 => nil

我正在改进传递选项和设置默认值,但现在我建议您将以下内容添加到您的 .irbrc 文件中:

require 'method_info'
MethodInfo::OptionHandler.default_options = {
 :ancestors_to_exclude => [Object],
 :enable_colors => true
}

这会启用颜色并隐藏每个对象具有的方法,因为您通常对这些方法不感兴趣。

于 2010-11-09T11:06:38.377 回答
4

关于什么:

Object.constants.select{|x| eval(x.to_s).class == Class}

这列出了我可用的课程。我不是红宝石专家,我被丢在红宝石控制台上,不知道手头有什么课程。那一个班轮是一个开始。

于 2016-07-27T22:27:25.053 回答
2

要访问 ruby​​ 中的所有对象实例,请使用 ObjectSpace

http://www.ruby-doc.org/core-1.8.7/classes/ObjectSpace.html#M000928

然而,这被认为很慢(即使对于 ruby​​),并且可能无法在某些解释器中启用(例如,jRuby 可以禁用 ObjectSpace,因为它在 jvm 中用于 gc 的速度要快得多,而无需在 jRuby 中跟踪这些东西)。

于 2008-10-23T08:07:04.187 回答
0

您甚至可以在加载之前将 .methods 消息传递给库/模块,以查看所有可用的方法。这样做self.methods只是返回 Object 对象包含的所有方法。你可以通过做看到这一点self.class。因此,假设您想查看 File 模块中的所有方法。您只需这样做File.methods,您将获得 File 模块中存在的所有方法的列表。这也许不是您想要的,但它应该会有所帮助。

于 2008-10-23T08:06:06.700 回答