Differenze tra le versioni di "TypeOf"

Da Gambas-it.org - Wikipedia.
Riga 11: Riga 11:
 
  '''Public''' Sub Main()
 
  '''Public''' Sub Main()
 
    
 
    
   Dim tipi As String[] = [Null, "Boolean", "Byte", "Short", "Integer", "Long", "single", "Float", "Date", "String",
+
   Dim tipi As String[] = ["Void", "Boolean", "Byte", "Short", "Integer", "Long", "Single", "Float", "Date", "String",
                           Null, "Pointer", "Variant", "Function", "Class or Structure", "Null", "Object"]
+
                           Null, "Pointer", "Variant", "Array o Function", "Class o Structure", "Null", "Object"]
 
    
 
    
 
   Dim i As Integer
 
   Dim i As Integer
 
    
 
    
  Print "Il tipo di dato è:  "; tipi[TypeOf(i)]
+
  Print "Il tipo di dato è:  "; tipi[TypeOf(i)]
 
    
 
    
 
  '''End'''
 
  '''End'''

Versione delle 02:56, 10 set 2022

La funzione TypeOf() ritorna un valore intero che rappresenta, conformemente all'enumerazione presente nel file sorgente /.../main/share/gb_type_common.h, il tipo di dato, al quale appartiene una variabile.


La sua sintassi è:

TypeOf(variabile) As Integer


Mostriamo un esempio pratico:

Public Sub Main()
 
 Dim tipi As String[] = ["Void", "Boolean", "Byte", "Short", "Integer", "Long", "Single", "Float", "Date", "String",
                         Null, "Pointer", "Variant", "Array o Function", "Class o Structure", "Null", "Object"]
 
 Dim i As Integer
 
 Print "Il tipo di dato è:  "; tipi[TypeOf(i)]
  
End