Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > jsonライブラリ > JSON::Generator::GeneratorMethods::Objectモジュール
クラスの継承リスト: JSON::Generator::GeneratorMethods::Object
aliases: JSON::Ext::Generator::GeneratorMethods::Object
Object に JSON で使用するインスタンスメソッドを追加するためのモジュールです。
to_json(state_or_hash = nil) -> String
[permalink][rdoc]自身を to_s で文字列にした結果を JSON 形式の文字列に変換して返します。
このメソッドはあるオブジェクトに to_json メソッドが定義されていない場合に使用する フォールバックのためのメソッドです。
require "json"
class Person
attr :name, :age
def initialize(name, age)
@name, @age = name, age
end
end
tanaka = Person.new("tanaka", 29)
tanaka.to_json # => "\"#<Person:0x00007ffdec0167c8>\""
tanaka.method(:to_json).owner # => JSON::Ext::Generator::GeneratorMethods::Object