How to Initialize Static Variables to Nonzero Values
ID: Q119737
|
The information in this article applies to:
-
Microsoft Visual Basic Standard and Professional Editions for Windows, versions 2.0, 3.0
-
Microsoft Visual Basic programming system for Windows, version 1.0
SUMMARY
Normally in Visual Basic, when a static variable is declared inside a
Function or Sub procedure, it gets initialized to 0 (numeric data type) or
an empty string, "" (string data type), by default. This article shows a
way to initialize these variables to values other than the default.
MORE INFORMATION
When a variant variable is first declared, it is initialized with the EMPTY
value by default. The idea here is to take advantage of this fact, by
testing a dummy variant static variable with the IsEmpty function and
initializing the other static variables to the values you want if this
function returns TRUE. It is important to set the dummy variant to some
value after you initialize your static variables, so that IsEmpty always
returns FALSE for subsequent calls to the subroutine, and that because of
this the other static variables are not reinitialized.
Here is an example that shows how to initialize a static variant, integer,
and string variable declared in a Sub called InitStatic:
Step-by-Step Example
- Start a new project in Visual Basic. Form1 is created by default.
- On Form1, add a command button (Command1).
- Add the following code to the "(general) (declarations)" section of
Form1:
Sub initstatic ()
Static Dummy, V, I As Integer, S As String
' The code in the following if statement will be executed only once:
If IsEmpty(Dummy) Then
' Initialize the dummy variant, so that IsEmpty returns FALSE for
' subsequent calls.
Dummy = 0
' Initialize the other static variables.
V = "Great"
I = 7
S = "Visual Basic"
End If
Print "V="; V, "I="; I, "S="; S
' Static variables will retain their values over calls when changed.
V = 7
I = I + 7
S = Right$(S, 5)
End Sub
- Add the following code to the Command1_Click() event:
Sub Command1_Click()
initstatic
End Sub
- Run the program (press the F5 key). Then double-click the Command1
button to see the results.
Additional query words:
2.00 3.00
Keywords :
Version : WINDOWS:1.0,2.0,3.0
Platform : WINDOWS
Issue type :
|