跳至内容

pointerof

pointerof 表达式返回一个指向变量或实例变量内容的 指针

一个关于变量的例子

a = 1

ptr = pointerof(a)
ptr.value = 2

a # => 2

一个关于实例变量的例子

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

  def x
    @x
  end

  def x_ptr
    pointerof(@x)
  end
end

point = Point.new 1, 2

ptr = point.x_ptr
ptr.value = 10

point.x # => 10

因为 pointerof 涉及指针,所以它被认为是 不安全的