instance_sizeof

instance_sizeof

The instance_sizeof expression returns an Int32 with the instance size of a given class. For example:

class Point
  def initialize(@x, @y)
  end
end

Point.new 1, 2

# 2 x Int32 = 2 x 4 = 8
instance_sizeof(Point) #=> 12

Even though the instance has two Int32 fields, the compiler always includes an extra Int32 field for the type id of the object. That's why the instance size ends up being 12 and not 8.

To the extent possible under law, the persons who contributed to this workhave waived
all copyright and related or neighboring rights to this workby associating CC0 with it.
https://crystal-lang.org/docs/syntax_and_semantics/instance_sizeof.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部