As I'm browsing through a Rails source code, it contains the line:
@@autoloads = {}
What does @@ mean in Ruby?
|
As I'm browsing through a Rails source code, it contains the line:
What does |
|||||||
|
|
It means to access a class property (a property namespaced to the class), not an instance one (a property that exists for each instantiated object from that class). In your example, the
|
|||||||
|
|
@@ identifies a class variable. |
|||
|
|
|
@@ is nothing but indicating a class variable. A class variable is a variable that is shared amongst all instances of a class. This means that only one variable value exists for all objects instantiated from this class. Another way of thinking of thinking of class variables is as global variables within the context of a single class. |
|||
|
|