Differenze tra le versioni di "Strutture: dichiarazione ed uso"
Da Gambas-it.org - Wikipedia.
Riga 52: | Riga 52: | ||
'''PUBLIC''' Struct <Font Color= #B22222>StrutturaModello</font> | '''PUBLIC''' Struct <Font Color= #B22222>StrutturaModello</font> | ||
arB[10] As Byte <Font Color= #006400>' ''array monodimensionale definito''</font> | arB[10] As Byte <Font Color= #006400>' ''array monodimensionale definito''</font> | ||
− | arI As Integer[] <Font Color= #006400>' '' array monodimensionale non definito''</font> | + | arI As Integer[] <Font Color= #006400>' ''array monodimensionale non definito''</font> |
− | mt$[10, 4] As String <Font Color= #006400>' '' matrice''</font> | + | mt$[10, 4] As String <Font Color= #006400>' ''matrice''</font> |
'''End''' Struct | '''End''' Struct | ||
Versione delle 17:17, 14 mag 2012
La Struttura similmente all'Array aggrega due o più elementi. Però, mentre l'Array aggrega elementi del medesimo tipo (per esempio tutti valori di tipo Integer, o di tipo Byte, etc), la Struttura aggrega solitamente (ma non necessariamente) elementi di tipo diverso.
Dichiariamo una Struttura con dei campi, che dovranno essere riempiti con dei valori. Tale Struttura avrà un proprio nome e farà da modello alle particolari variabili strutture che saranno effettivamente utilizzate per contenere valori.
PUBLIC Struct NomeStruttura ' definisco i campi della Struttura "modello" ' Questa Struttura si riserverà, occupandola, 9 byte di memoria in tutto: valore1 As Integer ' dal byte n° 0 al n° 3 valore2 As Integer ' dal byte n° 4 al n° 7 valore3 as Byte ' il byte n° 8 END Struct ' creo una struttura "reale" composta a perfetta immagine di quella modello: nuovaStruttura As New NomeStruttura Public Sub Form_Open() Dim variabValor as Byte variabValor = Inputbox("Immetto un valore per \"riempire\" il campo \"variabile\" di \"nuovaStruttura\": valore3 .") ' attribuisco un valore a ciascun campo variabile della struttura ' (qui i valori sono due "costanti" ed uno "variabile" che immetto io con InputBox): nuovaStruttura.valore1 = 3 nuovaStruttura.valore2 = 6 nuovaStruttura.valore3 = variabValor End Public Sub Button1_Click() ' quindi opero con i valori contenuti da "nuovaStruttura", ' per esempio li faccio mostrare in console: With nuovaStruttura Print .valore1 Print .valore2 Print .valore3 End With End
Strutture contenenti Array e Matrici
Le Strutture possono essere costituite da campi di variabili Array e Matrici.
Esempio:
PUBLIC Struct StrutturaModello arB[10] As Byte ' array monodimensionale definito arI As Integer[] ' array monodimensionale non definito mt$[10, 4] As String ' matrice End Struct Private strutturaVariabile As New StrutturaModello PUBLIC Sub Form_Open() Dim a, m As Byte strutturaVariabile.arI = New Integer[] For a = 0 To 9 With strutturaVariabile .arB[a] = a .arI.Add(a + a) For m = 0 To 3 .mt$[a, m] = Chr(strutturaVariabile.arI[a] + 70) Next End With Next End PUBLIC Sub Button1_Click() Dim a, m As Byte For a = 0 To 9 With strutturaVariabile Print .arB[a] Print .arI[a] For m = 0 To 3 Print .mt$[a, m] Next End With Next End