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 is not intuitive anymore. |
|||||||||||||
|
|
I've found references about In my opinion, "Declare In Memory" is actually a mnemonic, created to make easier to learn how to use In fact, at the origins of Basic Really, Does It Matter? I mean, it is a keyword it has its meaning inside an artificial language. It doesn't have to be a word in English or any other natural language. So it could just mean whatever you want, all that matters is that it works. Anyhow, that is not completely true. As BASIC is part of our culture, and understanding why it came to be as it is - I hope - will help improve our vision of the world. I sit in from of my computer with a desire to help preserve this little piece of our culture that seems lost, replaced by our guessing of what it was. And so, I have dug MSDN both current and the old CDs from the 1998 version. I have also searched the documention for the old QBasic [Had to use DOSBox] and managed to get some Darthmouth manual, all to find how they talk about But before my hope was dim, I managed to find this BBC Microcomputer System Used Guide (that claims to be from 1984, and I don't want to doubt it). The BBC Microcomputer used a variant of BASIC called BBC BASIC and it is described in the document. Even though, it doesn't say what does
As I said, it doesn't say that Now, I got a rewarding surprise later on (at page 208), the title for the section that describes the DIM keyword (note: that is not listed in the contents) says:
So, I didn't get the quote "Dim stands for..." but I guess it is clear that any decent human being that is able to read those document will consider that With renewed hope, I decided to search about how
You can find this as part of the True BASIC Online User's Guides at the web page of True BASIC inc, a company founded by Thomas Eugene Kurtz, co-author of BASIC. So, In reallity,
|
||||
|
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. |
|||
|
|
|
Dimension a variable, basically you are telling the compiler that you are going to need a variable of this type at some point. |
|||
|
|
|
It stands for Dimension, but is generally read as "Create Variable," or "Allocate Space for This." |
|||
|
|
|
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 |
|||||
|
|
DIM stands for Declaration In Memory DIM x As New Integer creates a space in memory where the variable x is stored |
|||
|
|
|
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 |
|||
|
|
|
Short for Dimension. It's a type of variable. You declare (or "tell" Visual Basic) that you are setting up a variable with this word. |
|||
|
|
|
I don't recall ever seeing this in I think it means Dimension |
|||||
|
|
Declares and allocates storage space for one or more variables |
|||||
|
protected by Bo Persson Apr 6 '12 at 11:32
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
