るりまサーチ (Ruby 2.4.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.035秒)
トップページ > モジュール:Kernel[x] > クエリ:_builtin[x] > バージョン:2.4.0[x] > クエリ:$[x] > クエリ:$stdin[x]

別のキーワード

  1. _builtin $stdin
  2. _builtin $stdout
  3. _builtin $stderr
  4. _builtin $kcode
  5. _builtin $safe

ライブラリ

検索結果

Kernel$$stdin -> object (97096.0)

標準入力です。

...# 入力する
$stdin = STDIN # 元に戻す
//}

ただし、Kernel.#gets など、特定の組み込みメソッドは
$stdin オブジェクトにメソッドを転送して実装されています。
従って、Kernel.#gets などが正しく動作するには、
$stdin オブジェク...