24件ヒット
[1-24件を表示]
(0.080秒)
別のキーワード
ライブラリ
- ビルトイン (12)
-
rdoc
/ context (12)
クラス
- IO (12)
-
RDoc
:: Context :: Section (12)
検索結果
-
RDoc
:: Context :: Section # parent -> RDoc :: Context (21102.0) -
自身が所属する RDoc::Context オブジェクトを返します。
自身が所属する RDoc::Context オブジェクトを返します。 -
IO
# pid -> Integer | nil (21051.0) -
自身が IO.popen で作られたIOポートなら、子プロセスのプロセス ID を 返します。それ以外は nil を返します。
...が IO.popen で作られたIOポートなら、子プロセスのプロセス ID を
返します。それ以外は nil を返します。
@raise IOError 既に close されている場合に発生します。
//emlist[例][ruby]{
IO.popen("-") do |pipe|
if pipe
$stderr.puts "In parent, chi......ld pid is #{pipe.pid}" # => In parent, child pid is 16013
else
$stderr.puts "In child, pid is #{$$}" # => In child, pid is 16013
end
end
//}...