LibreOffice 24.8 Help
๋ณ์๋ ๋ฐฐ์ด์ ๊ฐ์ด ์๋ธ๋ฃจํด ๋๋ ํจ์๊ฐ ์ข ๋ฃ๋ ํ์๋ ์ ์ง๋๋๋ก ๋ณ์๋ ๋ฐฐ์ด์ ์๋ธ๋ฃจํด ๋๋ ํจ์ ๋ด์ ํ๋ก์์ ์์ค์์ ์ ์ธํฉ๋๋ค. ๋ํ Dim ๋ฌธ ๊ท์น๋ ์ ํจํฉ๋๋ค.
Static ๋ฌธ์ ๋ณ์ ๋ฐฐ์ด์ ์ง์ ํ๋ ๋ฐ ์ฌ์ฉํ ์ ์์ต๋๋ค. ๋ฐฐ์ด์ ๊ณ ์ ํฌ๊ธฐ๋ก ์ง์ ํด์ผ ํฉ๋๋ค.
Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ...
Sub ExampleStatic
Dim iCount As Integer, iResult As Integer
For iCount = 0 To 2
iResult = InitVar()
Next iCount
MsgBox iResult,0,"The answer is"
End Sub
REM Function for initialization of the static variable
Function InitVar() As Integer
Static iInit As Integer
Const iMinimum as Integer = 40 REM minimum return value of this function
if iInit = 0 then REM check if initialized
iInit = iMinimum
Else
iInit = iInit + 1
End If
InitVar = iInit
End Function