OA
Size: a a a
OA
OA
В
VM
В
VM
В
В
В
В
PM
PM
VM
class AВозможно более наглядный юз кейс.
attr_reader :a
attr_writer :a
def initialize
@a = 0
end
def b
a = 1
end
end
ins = A.new
ins.b
p ins.a
# 0
VM
VM
VM
class AВозможно более наглядный юз кейс.
attr_reader :a
attr_writer :a
def initialize
@a = 0
end
def b
a = 1
end
end
ins = A.new
ins.b
p ins.a
# 0
IP
class AВозможно более наглядный юз кейс.
attr_reader :a
attr_writer :a
def initialize
@a = 0
end
def b
a = 1
end
end
ins = A.new
ins.b
p ins.a
# 0
A