本文簡要介紹ruby語言中 ObjectSpace.count_tdata_objects
的用法。
用法
count_tdata_objects([result_hash]) → hash
計算每個T_DATA
類型的對象。
此方法僅適用於對 Ruby 程序的性能和內存使用感興趣的 MRI 開發人員。
它返回一個哈希為:
{RubyVM::InstructionSequence=>504, :parser=>5, :barrier=>6,
:mutex=>6, Proc=>60, RubyVM::Env=>57, Mutex=>1, Encoding=>99,
ThreadGroup=>1, Binding=>1, Thread=>1, RubyVM=>1, :iseq=>1,
Random=>1, ARGF.class=>1, Data=>1, :autoload=>3, Time=>2}
# T_DATA objects existing at startup on r32276.
如果給出了可選參數result_hash,則將其覆蓋並返回。這是為了避免探測效應。
返回的哈希的內容是特定於實現的,將來可能會改變。
在這個版本中,鍵是 Class
對象或 Symbol
對象。
如果對象是一種普通(可訪問)對象,則鍵是 Class
對象。如果對象不是一種普通的(內部)對象,則鍵是符號名稱,由rb_data_type_struct 注冊。
此方法僅適用於 C Ruby。
相關用法
- Ruby ObjectSpace.count_symbols用法及代碼示例
- Ruby ObjectSpace.count_imemo_objects用法及代碼示例
- Ruby ObjectSpace.count_objects_size用法及代碼示例
- Ruby ObjectSpace.count_nodes用法及代碼示例
- Ruby ObjectSpace.count_objects用法及代碼示例
- Ruby ObjectSpace.memsize_of_all用法及代碼示例
- Ruby ObjectSpace.define_finalizer用法及代碼示例
- Ruby ObjectSpace.allocation_generation用法及代碼示例
- Ruby ObjectSpace.each_object用法及代碼示例
- Ruby ObjectSpace.reachable_objects_from用法及代碼示例
- Ruby ObjectSpace.allocation_class_path用法及代碼示例
- Ruby ObjectSpace.trace_object_allocations用法及代碼示例
- Ruby ObjectSpace.allocation_method_id用法及代碼示例
- Ruby ObjectSpace模塊用法及代碼示例
- Ruby Object.instance_variable_get用法及代碼示例
- Ruby Object.display用法及代碼示例
- Ruby Object.remove_instance_variable用法及代碼示例
- Ruby Object.define_singleton_method用法及代碼示例
- Ruby Object.methods用法及代碼示例
- Ruby Object.public_send用法及代碼示例
- Ruby Object.xmp用法及代碼示例
- Ruby Object.singleton_methods用法及代碼示例
- Ruby Object.enum_for用法及代碼示例
- Ruby Object.freeze用法及代碼示例
- Ruby Object.inspect用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 ObjectSpace.count_tdata_objects。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。