108件ヒット
[101-108件を表示]
(0.139秒)
別のキーワード
ライブラリ
- ビルトイン (108)
キーワード
-
_ dump (12) - clone (12)
-
initialize
_ copy (12) - inspect (12)
-
instance
_ variable _ defined? (12) -
instance
_ variable _ get (12) -
singleton
_ method (12) -
to
_ s (12)
検索結果
-
Object
# to _ s -> String (120.0) -
オブジェクトの文字列表現を返します。
...ます。
Kernel.#print や Kernel.#sprintf は文字列以外の
オブジェクトが引数に渡された場合このメソッドを使って文字列に変換し
ます。
//emlist[][ruby]{
class Foo
def initialize num
@num = num
end
end
it = Foo.new(40)
puts it #=> #<Foo:0x2b69110>......class Foo
def to_s
"Class:Foo Number:#{@num}"
end
end
puts it #=> Class:Foo Number:40
//}
@see Object#to_str,Kernel.#String...