Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Question on releasing object and setting to .NULL.
Message
De
14/05/2009 17:37:37
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Titre:
Question on releasing object and setting to .NULL.
Divers
Thread ID:
01399978
Message ID:
01399978
Vues:
141
Standard practice seems to be, to set an object's property to .NULL. after releasing an object tied to a property. For example:
o=CREATEOBJECT("empty")
ADDPROPERTY(o, "o1", CREATEOBJECT("form"))
o.o1.release()
o.o1=.null.
? TYPE("o.o1")  && still shows "O"
It seems it would be better to set the property to .F. instead, after releasing it. That way, anything that tests for TYPE("o.o1") = "O" would not be fooled. Setting the property to .NULL. still leaves the type as "O" (object). Whereas, setting the property to .F. changes the type to "L". Is there a good reason for using .null.? Which requires an additional test using ISNULL(). I often check using TYPE("..") = "O" because the property may not have been created and/or assigned. Thanks for any insight into reasons for using the .NULL. assignment.
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform