Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Type function is not smart enough
Message
De
24/10/2002 14:40:25
 
 
À
24/10/2002 14:32:11
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00714883
Message ID:
00715062
Vues:
25
>>Nadya,
>>
>>TYPE() works perfectly. It returns the type of an expression. The expression "SomeUDF(123)" is character because "someudf(123)" is a literal string when "SomeUDF(123)" is evaluated it becomes SomeUDF(123) which is a string of characters.
>>
>>However TYPE(SomeUDF(123)) will retunr the type of the value that evaluating the expression results in, so if the UDF retuirns Character then the TYPE will retunr C.
>>
>>This is why;
>>
>>
>>Var = 123
>>?TYPE(Var) && N && Theexpression Var evaluates to 123 which is a number
>>?TYPE("Var") && C The expression "Var" evals to Var which is a string
>>
>>
>>There is nothing wrong with the TYPE() function it just takes some study to fully underatand how it works.
>Jim;
>In VFP6 SP5
>
>var = 123
>?TYPE(var) && generates function argument value, type or count invalid error
>?TYPE("var") && returns "N"
>?VARTYPE(var) && returns "N"
>?VARTYPE("var") && returns "C"
>
>This is how type() function has worked in previous versions,has this changed in VFP7 and above?

I think his Var=123 was just a typo and should have been Var="123"

Alan
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform