Feed on
Posts
Comments

Instance var Vs Class var

# class varibale starts with @@
# Must be initialized before they are used
# A class variable is shared among all objects of a class
# There is only one copy of a particular class variable for a given class
# It is also accessible to the class methods
#Sometimes a class needs to provide methods that work without […]

Read Full Post »