Declaring Visual Basic Variables and Constants

From Techotopia
Revision as of 18:00, 1 August 2007 by Neil (Talk | contribs) (Initializing Visual Basic Variables)

Jump to: navigation, search

The different types of Visual Basic variables and constants was described in detail in the previous chapter (Understanding Visual Basic Variable & Constant Types). In this chapter we will learn how to declare and initialize variables and constants in Visual Basic.

Before learning how to declare variables and constants it is worth a quick reminder of the difference between variables and constants in Visual Basic. Both constants and variables provide a way to reserve memory locations for the storage of values of various types (such as numbers, characters and strings). These memory locations are assigned names which can be used in Visual Basic code to reference these memory locations. For example, you might want to store the interest rate for a banking application. To do so you would declare a variable with a name of your choice (such as interestRate) and specify the variable as an Interger type (since it will be storing a number). Having declared the variable you can assign a value to it and read that value anywhere in your application code.

The difference between variables and constants is that the value stored in a variable can be changed at any time after it has been created. The value assigned to a constant, as the name suggests, cannot be changed once it has been declared an initialized.

Declaring Visual Basic Variables

Variables are declared using the Visual Basic Dim keyword. The syntax for a simple declaration of a variable is as follows:

Dim variableName As variableType

In the above outline, Dim is the keyword which indicates to Visual Basic that a variable is being declared. variableName is the name assigned to the variable. Try to use a descriptive variable name and prefix the name with something which indicates the variable type. For example, when declaring a String variable prefix the name with str (e.g strFirstName). The As keyword precedes the declaration of the variable type (String, Date, Integer etc). For a complete list of Visual Basic variable types see Understanding Visual Basic Variable & Constant Types.

To declare an Integer value named intInterestRate for example:

Dim intInterestRate As Integer

It is also possible to declare multiple variables on the same line by separating each varaible by a comma. When the variable are of the same type, the type declaration only needs to be made once at the end of the declaration:

Dim intInterestRate, intExchangeRate As Integer

In the case where the variables are of different types the type of variable must be decalred at the end of each group of the same type. For example:

Dim strCustomerName As String, intInterestRate, intExchangeRate As Integer

Initializing Visual Basic Variables

Visual Basic variables may be initialized either during the declaration, or after the declaration. Unless there is a good reason to do otherwise, it is recommended that variables be initialized during the declaration.

Initialization is performed using the Visual Basic assignment operator (=). To initialize a single variable when it is declared:

Dim intInterestRate As Integer = 5

When declaring multiple variables each variable may be initialized in the declaration line:

Dim strCustomerName As String = "Fred", intInterestRate = 5 As Integer, intExchangeRate As Integer = 10

Assigning New Values to Visual Basic Variables

Once a variable has been declared, a new value can be assigned to the variable at any time using the variable name and the assignment (=) operator. In the following sample Visual Basic code, a variable is declared and initialized to 10. It is then re-assigned the value of 20:

Dim intInterestRate As Integer = 10

intInterestRate = 20