답변:
혹시:
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
클래스에 메소드를 추가하면 기본 출력에 의존하지 않고 클래스 속성이 표시되는 방법을 정의 할 수 있습니다. 많은 클래스가 잘 구현하지는 않지만 디버깅 할 때 실제로 유용 할 수 있습니다.to_s
검사 방법을 찾지 못하면 루비는 다시 넘어갑니다 .