私はRubyを初めて使用し、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__']
>>>
ObjectSpace.each_object を探している可能性があります。
含まれているモジュールのリストを取得するには、 Module.included_modules を使用できます。
object.respond_to? を使用して、オブジェクトがケースバイケースでメソッドに応答するかどうかを確認することもできます。
「現在のオブジェクト」が何を意味するのか、私には完全にはわかりません。すでに述べたように、ObjectSpaceを反復処理できます。しかし、ここにいくつかの他の方法があります。
local_variables
instance_variables
global_variables
class_variables
constants
1つの落とし穴があります。これらは適切なスコープで呼び出す必要があります。したがって、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...", ...]
私はそのための宝石を書きました:
$ 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
}
これにより、すべてのオブジェクトが持つメソッドに色を付けたり、隠したりすることができます。
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
_
何について:
Object.constants.select{|x| eval(x.to_s).class == Class}
それは私のために利用可能なクラスをリストします。私はRubyの専門家ではありません。私はRubyコンソールに行き、どのクラスが手元にあるのかまったくわかりませんでした。その1つのライナーから始めました。
Rubyのすべてのオブジェクトインスタンスにアクセスするには、ObjectSpaceを使用します
http://www.Ruby-doc.org/core-1.8.7/classes/ObjectSpace.html#M000928
ただし、これは低速であると見なされ(Rubyの場合でも)、一部のインタープリターでは有効にならない場合があります(たとえば、jRubyでこのようなものを追跡する必要がないため、jRubyはgcのjvmに依存しているため、ObjectSpaceを無効にできます)。
.methodsメッセージをロードする前にライブラリ/モジュールに渡して、使用可能なすべてのメソッドを確認できます。 self.methods
を実行すると、Objectオブジェクトに含まれるすべてのメソッドが返されます。 self.class
を実行すると、これを確認できます。したがって、Fileモジュールのすべてのメソッドを確認するとします。単にFile.methods
を実行すると、Fileモジュールに存在するすべてのメソッドのリストが表示されます。これはおそらく望んでいることではありませんが、多少役立つでしょう。