Variable Types Flashcards
what are the five types of variables?
Constants, global variables, class variables, instance variables, and local variables
how is a constant variable declared?
When is it used?
by capitalizing every letter in the variable’s name
MY_CONSTANT = ‘I am available throughout your app.’
used for storing data that never needs to change.
Can Constants be declared in method definitions?
no
how are Global variables defined?
declared by starting the variable name with the dollar sign ($).
$var = ‘I am also available throughout your app.’
why are defining Global variables dangerous?
These variables are available throughout your entire app, overriding all scope boundaries.
How are Class variables declared?
starting the variable name with two @ signs
@@instances = 0
How are Class variables accessed?
accessible by instances of your class, as well as the class itself.
List an example of when you should use a class variable
When you need to declare a variable that is related to a class, but each instance of that class does not need its own value for this variable
how is a class variable initialized?
initialized at the class level, outside of any method definitions.
how can class variables be altered?
altered using class or instance method definitions.
how are Instance variables declared?
starting the variable name with one @ sign.
@var = ‘I am available throughout the current instance of this class.’