What does DIM stand for in Visual Basic?
|
|
|||||||||||||||||||||
|
|
|
Dim originally (in BASIC) stood for Dimension, as it was used to define the dimensions of an array. (The original implementation of BASIC was Dartmouth BASIC, which descended from FORTRAN, where DIMENSION is spelled out.) Nowadays, Dim is used to define any variable, not just arrays, so its meaning in not intuitive anymore. |
||||||||
|
|
|
Back in the day DIM reserved memory for the array and when memory was limited you had to be careful how you used it. I once wrote (in 1981) a BASIC program on TRS-80 Model III with 48Kb RAM. It wouldn't run on a similar machine with 16Kb RAM until I decreased the array size by changing the DIM statement |
||
|
|
|
|
It stands for Dimension, but is generally read as "Create Variable," or "Allocate Space for This." |
||
|
|
|
|
It's short for Dimension, as it was originally used to specify the size of arrays. Later on it came to be used to declare all kinds of variables, when the possibility to specify the type for variables was added. |
||
|
|
|
|
Declare the variable named "numberOfStudents", typed "Integer" By the way: I think answers to such basic questions are easy to find in the MSDN |
||
|
|
|
|
Variable declaration. Initially, it was short for "dimension", which is not a term that is used in programming (outside of this specific keyword) to any significant degree. http://in.answers.yahoo.com/question/index?qid=20090310095555AANmiAZ |
|||
|
|
|
Dimension a variable, basically you are telling the compiler that you are going to need a variable of this type at some point. |
||
|
|
|
|
Declares and allocates storage space for one or more variables |
||
|
