Class Variables
Learn about class variables.
Class variables
A class variable’s name starts with a @@
sign. It must be initialized before use. Its scope is limited to the class in which it’s created. In other words, it belongs to the whole class and can ...