Create a ruby class called Test
class Test
def cv=(value)
@@cv = value
end
def cb=(value)
@cb = value
end
def cv
@@cv
end
def cb
@cb
end
end
=> nil
Then create an instance of this class a and b
Try accessing the class variable without initializing it.
a = Test.new
=> #
a.cv
NameError: uninitialized class variable @@cv in Test
from (irb):9:in `cv'
from (irb):16
Initialize the class variable with some data. And add values to the instance variable of a and b.
a.cv=45 => 45 a.cv => 45
b = Test.new => # b.cv => 45 a.cb = 34 => 34 a.cb => 34 b.cb => nil b.cb = 90 => 90 b.cb => 90