るりまサーチ

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

別のキーワード

  1. stringio reopen
  2. io reopen
  3. _builtin reopen
  4. csv reopen
  5. syslog reopen

ライブラリ

クラス

検索結果

CSV#reopen(io) -> self (18124.0)

IO#reopen に委譲します。

...IO#reopen に委譲します。


@see IO#reopen...

IO#reopen(path) -> self (18110.0)

path で指定されたファイルにストリームを繋ぎ換えます。

...= File.new("testfile")
f1.print("This is line three\n")
f2.readlines # => ["This is line one\n", "This is line two\n"]
f1.close
f2.reopen("testfile", "r") # => #<File:testfile>
f2.readlines # => ["This is line one\n", "This is line two\n", "This is line three\n"]
f2.c...

IO#reopen(path, mode) -> self (18110.0)

path で指定されたファイルにストリームを繋ぎ換えます。

...= File.new("testfile")
f1.print("This is line three\n")
f2.readlines # => ["This is line one\n", "This is line two\n"]
f1.close
f2.reopen("testfile", "r") # => #<File:testfile>
f2.readlines # => ["This is line one\n", "This is line two\n", "This is line three\n"]
f2.c...

StringIO#reopen(sio) -> StringIO (18110.0)

自身が表す文字列が指定された StringIO と同じものになります。

...が指定された StringIO と同じものになります。

@param sio 自身が表したい StringIO を指定します。

//emlist[例][ruby]{
require 'stringio'
sio = StringIO.new("hoge", 'r+')
sio2 = StringIO.new("foo", 'r+')
sio.reopen(sio2)
p sio.read #=> "foo"
//}...

StringIO#reopen(str, mode = &#39;r+&#39;) -> StringIO (18110.0)

自身が表す文字列が指定された文字列 str になります。

...を指定します。

@raise Errno::EACCES str がフリーズされていて、mode が書き込み可能に設定されている場合に発生します。

//emlist[例][ruby]{
require 'stringio'
sio = StringIO.new("hoge", 'r+')
sio.reopen('foo')
p sio.read #=> "foo"
//}...

絞り込み条件を変える

IO#reopen(io) -> self (18105.0)

自身を指定された io に繋ぎ換えます。

自身を指定された io に繋ぎ換えます。

クラスも io に等しくなることに注意してください。
IO#pos, IO#lineno などは指定された io と等しくなります。

@param io 自身を繋ぎ換えたい IO オブジェクトを指定します。

@raise IOError 指定された io が close されている場合に発生します。