るりまサーチ

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

別のキーワード

  1. _builtin <<
  2. openssl <<
  3. csv <<
  4. rexml/document <<
  5. zlib <<

検索結果

StringIO#pos=(n) (35128.0)

自身の位置を n に移動します。自身が表す文字列のサイズより大きくても構いません。

...@param n 自身の位置を整数で指定します。

@raise Errno::EINVAL n がマイナスである場合に発生します。

//emlist[例][ruby]{
require "stringio"
a = StringIO.new("hoge", 'r+')
a.pos = 10
a << 'Z'
a.string #=> "hoge\000\000\000\000\000\000Z"
//}...