回答:
おそらく:
puts variable.inspect
server = TCPServer.new 0 ; puts server.inspect #<TCPServer:fd 9> => nil
。ほとんどの複雑なオブジェクトでは機能しません。
var_dump
ルビーで同等の、私はそれが見つけpp
、その場合にはusafulくらいです、こちらをご覧- stackoverflow.com/questions/6501506/ruby-inspect-readability/...
methods
オブジェクトのメソッドの配列を返すメソッドの使用法を見つけるかもしれません。これはとprint_r
は異なりますが、場合によっては便利です。
>> "Hello".methods.sort
=> ["%", "*", "+", "<", "<<", "<=", "<=>", "==", "===", "=~", ">", ">=", "[]", "[]=", "__id__", "__send__", "all?", "any?", "between?", "capitalize", "capitalize!", "casecmp", "center", "chomp", "chomp!", "chop", "chop!", "class", "clone", "collect", "concat", "count", "crypt", "delete", "delete!", "detect", "display", "downcase", "downcase!", "dump", "dup", "each", "each_byte", "each_line", "each_with_index", "empty?", "entries", "eql?", "equal?", "extend", "find", "find_all", "freeze", "frozen?", "grep", "gsub", "gsub!", "hash", "hex", "id", "include?", "index", "inject", "insert", "inspect", "instance_eval", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "intern", "is_a?", "is_binary_data?", "is_complex_yaml?", "kind_of?", "length", "ljust", "lstrip", "lstrip!", "map", "match", "max", "member?", "method", "methods", "min", "next", "next!", "nil?", "object_id", "oct", "partition", "private_methods", "protected_methods", "public_methods", "reject", "replace", "respond_to?", "reverse", "reverse!", "rindex", "rjust", "rstrip", "rstrip!", "scan", "select", "send", "singleton_methods", "size", "slice", "slice!", "sort", "sort_by", "split", "squeeze", "squeeze!", "strip", "strip!", "sub", "sub!", "succ", "succ!", "sum", "swapcase", "swapcase!", "taguri", "taguri=", "taint", "tainted?", "to_a", "to_f", "to_i", "to_s", "to_str", "to_sym", "to_yaml", "to_yaml_properties", "to_yaml_style", "tr", "tr!", "tr_s", "tr_s!", "type", "unpack", "untaint", "upcase", "upcase!", "upto", "zip"]
instance_methods
クラスから問題のユニークな方法を取得するには:(String.instance_methods - Object.instance_methods).sort
.methods.sort
とても便利です。特定のオブジェクトに(漠然と)固有のメソッドをすばやく表示する「スマートな」方法はありますか?たとえば、のようなメソッドは.to_s
頻繁に表示される可能性があるため、それほど有用ではありませんが、特定のオブジェクトの特定のメソッドを知るのに非常に便利なものもあります。特に明白でない場合に。これらをすばやく入手する方法はありますか?(ケースの点で、私が持っているPG::Result
オブジェクトを、そしてすぐに私はおそらく便利見つけることができる可能性の高い方法を評価したい。
すでにインデントされたJSONを印刷したい場合:
require 'json'
...
puts JSON.pretty_generate(JSON.parse(object.to_json))
object.attribute_names
# => ["id", "name", "email", "created_at", "updated_at", "password_digest", "remember_token", "admin", "marketing_permissions", "terms_and_conditions", "disable", "black_list", "zero_cost", "password_reset_token", "password_reset_sent_at"]
object.attributes.values
# => [1, "tom", "tom@tom.com", Tue, 02 Jun 2015 00:16:03 UTC +00:00, Tue, 02 Jun 2015 00:22:35 UTC +00:00, "$2a$10$gUTr3lpHzXvCDhVvizo8Gu/MxiTrazOWmOQqJXMW8gFLvwDftF9Lm", "2dd1829c9fb3af2a36a970acda0efe5c1d471199", true, nil, nil, nil, nil, nil, nil, nil]
undefined method 'attributes' for ...
object.attributes_name
動作しませんでしたobject.attributes
が、キーと値の素敵なハッシュを取得しました。これは私を助けました、ありがとう!
inspect
クラスにメソッドを追加すると、デフォルトの出力に依存するのではなく、クラスの属性の表示方法を定義できます。多くのクラスはそれをうまく実装していませんが、デバッグ時には非常に役立ちます。Rubyはto_s
、inspect`メソッドが見つからない場合にフォールバックします。