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
Like this:
Like Loading...
Related
Author: Abhilash
I'm Abhilash, a web developer who specializes in Ruby development. With years of experience working with various frameworks like Rails, Angular, Sinatra, Laravel, NodeJS, React and more, I am passionate about building robust and scalable web applications.
Since 2010, I have been honing my skills and expertise in the Ruby on Rails platform. This blog is dedicated to sharing my knowledge and experience on topics related to Ruby, Ruby on Rails, and other subjects that I have worked with throughout my career. Join me on this journey to explore the exciting world of web development!
View all posts by Abhilash