객체의 필드를 콘솔에 덤프하는 방법


264

간단한 Ruby 스크립트를 실행할 때 객체의 필드를 콘솔에 덤프하는 가장 쉬운 방법은 무엇입니까?

print_r()배열과 함께 작동 하는 PHP와 비슷한 것을 찾고 있습니다.

답변:


420

혹시:

puts variable.inspect

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

4
현재 링크 고장이 하나의 참조 ruby-doc.org/core-2.0/Object.html#method-i-inspect
SamFlushing

5
server = TCPServer.new 0 ; puts server.inspect #<TCPServer:fd 9> => nil . 가장 복잡한 객체에는 작동하지 않습니다.
ribamar

PHP를 찾을 때이 첫 번째 대답은 발견이기 때문에 var_dump루비에 해당하는, 내가 그 발견 pp이 경우 usaful 많이, 여기 봐 - stackoverflow.com/questions/6501506/ruby-inspect-readability/...
라빈

참고 p object입니다 별칭을 위한puts object.inspect
월 Klimo

54

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"]

9
내성 사용은 Ruby의 즐거움 중 하나입니다. instance_methods문제의 클래스에서 객체를 빼면 고유 한 메소드를 얻을 수 있습니다.(String.instance_methods - Object.instance_methods).sort
Tin Man

2
이 페이지를 찾을 때 예상했던 정확한 답변이어야합니다.
jaycode

.methods.sort매우 유용합니다. 특정 객체에 대해 (모호하게) 고유 한 메소드를 빠르게 표시하는 '스마트 한'방법이 있습니까? 예를 들어, 같은 방법 .to_s이 자주 나타날 수 있으므로 그다지 유용한 것은 아니지만 일부는 특정 객체에 대한 특정 방법을 아는 것이 매우 편리 할 수 ​​있습니다. 특히 명확하지 않은 경우. 빠르게 얻을 수있는 방법이 있습니까? (예를 들어, 나는 목표를 가지고 있고 PG::Result내가 유용하다고 생각할 수있는 가능한 방법들을 빠르게 평가하고 싶다.
stevec

50

to_yaml방법은 때때로 유용한 것 같습니다.

$foo = {:name => "Clem", :age => 43}

puts $foo.to_yaml

보고

--- 
:age: 43
:name: Clem

(이것은 YAML로드중인 일부 모듈에 달려 있습니까? 아니면 일반적으로 사용 가능합니까?)


3
예, to_yamlYAML 모델을로드해야합니다. 그러나 Ruby 표준 라이브러리의 일부입니다.
Chuck

Rails 앱 콘솔에서 Amazon S3 객체를 검사하려고 할 때 도움이되었습니다.
Paul

32
p object

에 대한 루비 문서 p.

p(*args) public

각 객체에 대해 obj.inspect를 직접 작성하고 프로그램의 표준 출력에 개행을 씁니다.


variable.to_s와 같지 않습니까? 클래스가 명시 적으로 재정의하지 않는 한 객체 참조를 인쇄하는 것으로 나타났습니다
roryf

15

객체에서 인스턴스 변수 만 찾고 있다면 유용 할 수 있습니다.

obj.instance_variables.map do |var|
  puts [var, obj.instance_variable_get(var)].join(":")
end

또는 복사 및 붙여 넣기를위한 단일 라이너 :

obj.instance_variables.map{|var| puts [var, obj.instance_variable_get(var)].join(":")}

10

foo.to_json을 넣습니다.

json 모듈이 기본적으로로드되기 때문에 유용 할 수 있습니다


4
to_json1.8.7 또는 1.9.2에서는 기본적으로로드되지 않습니다.
Tin Man

5

이미 들여 쓴 JSON 을 인쇄하려는 경우 :

require 'json'
...
puts JSON.pretty_generate(JSON.parse(object.to_json))

5

비슷한 것을 찾고 있었기 때문에이 스레드를 발견했습니다. 나는 응답을 좋아하고 아이디어를 줘서 .to_hash 메소드를 테스트하고 유스 케이스에서도 잘 작동했습니다. 수 :

object.to_hash


1
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] 

4
undefined method 'attributes' for ...
yegor256

3
object.attributes_name작동하지 않았지만 object.attributes키와 값의 멋진 해시를 얻습니다. 감사합니다.
d3vkit
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.