本文简要介绍ruby语言中 ObjectSpace.count_objects
的用法。
用法
count_objects([result_hash]) → hash
计算按类型分组的所有对象。
它返回一个哈希,例如:
{
:TOTAL=>10000,
:FREE=>3011,
:T_OBJECT=>6,
:T_CLASS=>404,
# ...
}
返回的哈希的内容是特定于实现的。将来可能会改变。
以:T_
开头的键表示活动对象。例如,:T_ARRAY
是数组的数量。 :FREE
表示现在未使用的对象槽。 :TOTAL
表示上述的总和。
如果给出了可选参数result_hash
,它将被覆盖并返回。这是为了避免探测效应。
h = {}
ObjectSpace.count_objects(h)
puts h
# => { :TOTAL=>10000, :T_CLASS=>158280, :T_MODULE=>20672, :T_STRING=>527249 }
此方法仅适用于 C Ruby。
相关用法
- Ruby ObjectSpace.count_objects_size用法及代码示例
- Ruby ObjectSpace.count_symbols用法及代码示例
- Ruby ObjectSpace.count_imemo_objects用法及代码示例
- Ruby ObjectSpace.count_nodes用法及代码示例
- Ruby ObjectSpace.count_tdata_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_objects。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。