|
Not to argue the point, but I've found a really nice use for
subroutines. I
use subroutines INSIDE of procedures to break out repetitive code or
simply
top keep the mainline of the procedure down when the code is complex. The
subroutines can access any of the procedure's local variables, much the
same
way that methods can use private class variables.
It allows me to share variables among parts of the code without having to
explicitly pass them up and down the stack. It's a tradeoff, because if
one
of the subroutines modifies the variable then it's technically a side
effect, which should be avoided, but in reality it can be a real time
saver
not having to prototype a bunch of procedures that are only used in one
place.
Joe
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.