るりまサーチ

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

別のキーワード

  1. win32ole ole_obj_help
  2. win32ole ole_method_help
  3. win32ole ole_show_help
  4. irb/help print_usage
  5. un help

ライブラリ

キーワード

検索結果

<< < ... 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 >>