るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.107秒)
トップページ > 種類:モジュール関数[x] > クエリ:string[x] > バージョン:2.3.0[x] > クエリ:allocation_sourcefile[x]

別のキーワード

  1. objspace allocation_sourcefile
  2. objspace allocation_sourceline
  3. objectspace allocation_sourcefile
  4. objectspace allocation_sourceline
  5. allocation_sourcefile objspace

ライブラリ

モジュール

検索結果

ObjectSpace.#allocation_sourcefile(object) -> String (54628.0)

objectの元となったソースファイル名を返します。

objectの元となったソースファイル名を返します。

@param object 元となるソースファイル名を取得したいobjectを指定します。
@return objectの元となるソースファイル名を返します。存在しない場合はnilを返します。

//emlist[例:test.rbというファイルで下記のスクリプトを実行した場合][ruby]{
require 'objspace'

ObjectSpace::trace_object_allocations_start
obj = Object.new
puts "file:#{ObjectSpace::allocation_sourc...