るりまサーチ

最速Rubyリファレンスマニュアル検索!
1804件ヒット [1801-1804件を表示] (0.059秒)

別のキーワード

  1. argf.class each_line
  2. argf.class each
  3. argf.class lines
  4. argf.class gets
  5. argf.class readlines

ライブラリ

キーワード

検索結果

<< < ... 17 18 19 >>

Object#to_str -> String (13.0)

オブジェクトの String への暗黙の変換が必要なときに内部で呼ばれます。 デフォルトでは定義されていません。

...面で代置可能であるような、
* 文字列そのものとみなせるようなもの
という厳しいものになっています。

//emlist[][ruby]{
class Foo
def to_str
'Edition'
end
end

it = Foo.new
p
('Second' + it) #=> "SecondEdition"
//}

@see Object#to_s,Kernel.#String...
<< < ... 17 18 19 >>