Add Word
All
| Word | Explanation |
|---|
| variable | A variable, on the other hand, is the actual
instantiation (the memory storage of data values being manipulated in the
program) of that data-type at runtime or simply the actual memory that
is allocated at runtime.
For instance:
           Int aPrimitiveInt = 24;
where, 24 is the variable,
or in this case, the actual contents stored in memory. | | Identifier | An identifier is the name and associated data-type
that identifies a variable in a Java source file or more simply, the name of
the variable that is in the source code for the program.
For instance:
int aPrimitiveInt
where, aPrimitiveInt is thename and int is the data type |
|
Disclaimer: This section is for information purposes only posted by the public. If you feel the information is incorrect, please send us an email to webmaster at computeruser dot com.