Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Microsoft's position on Visual FoxPro and .NET
Message
De
14/06/2004 09:53:41
Emmanuel Huybrechts
Technimeca International Corp.
Montréal, Québec, Canada
 
 
À
14/06/2004 09:00:48
Metin Emre
Ozcom Bilgisayar Ltd.
Istanbul, Turquie
Information générale
Forum:
Visual FoxPro
Catégorie:
Conférences & événements
Divers
Thread ID:
00908177
Message ID:
00913428
Vues:
73
>As you said SQL server more data-centric from VFP. If the most important thing is that I don't use VFP.
>
>The most important thing in VFP for me "developer productivity". VFP much and more flexbly and easy from others. Errors and code lines more and more clearly.
>
>A few samples:
>
>-overloaded classes in other languages. :)) . I don't need that but other programmers (non VFP programmers) can't imagine that.
>

Overloaded method are not so bad. For one thing, it can lead to more elegant code because you can have different code for a different list of parameters. And thus, you don't have to write lines like this :
FUNCTION Test(Param1, Param2)
DO CASE
CASE PCOUNT() == 1 
   ** do this
CASE PCOUNT() == 2
   ** do that
ENDCASE
with overloaded methods, you can write :
FUNCTION Test(Param1)
  ** do this
ENDFUNC

FUNCTION Test(Param1, Param2)
  ** do that
ENDFUNC
>-command window, run my project part by part without make an .EXE

Yes, that's one of the most productive attribute of VFP.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform