Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
My most favorite code sample
Message
De
14/01/2014 17:25:48
Walter Meester
HoogkarspelPays-Bas
 
 
À
14/01/2014 15:33:31
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Versions des environnements
Environment:
VB 9.0
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Divers
Thread ID:
01591669
Message ID:
01591872
Vues:
60
>I agree about the advantage given by name sequencing when refactoring. For a work in progress, it looks pretty clever to me. The only downside is that, after the break-up, the sequence of steps has to be enforced by the programmer, whereas before, it was enforced by the program itself. As an example in the code sample, stp2sub40 is invoked before stp2sub10, which apparently breaks the sequence imposed by the naming convention.
>
>IMHO, code like that is a nightmare to debug. I hate code like this:

>
>IF ThisFunction() or ThatFunction or TheOtherFunction()
> .
> .
> .
>
>
>Much easier to debug if written like this:
>
>
>llRetVal = ThisFunction()
>IF llRetVal
>  llRetVal = ThatFunction()
>ENDIF 
>IF llRetVal
>  llRetVal = OtherFunction()
>ENDIF 
>
>
>At least if there is a bug in the code you can easily determine which one of the functions is causing the problem.

I would not concatenate more than two functions, but otherwise I'd go for:
lRet = Function1()
lRet = lRet AND Function2()
lRet = lRet AND Function3()
lRet = lRet AND Function4()
etc
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform