× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



On Fri, 21 Nov 2003, afvaiv wrote:

> Just for curiosity, some people will code it the #2 way, but WHY do MOST
> people seem to prefer #1 ?
>
> ----- Style #1 -------------------------------------------
> mykey setll record
> if %equal
> mykey reade record
> dow not %eof
> ... process ...
> mykey reade record
> enddo
> endif
>
> ----- Style #2 -------------------------------------------
>
> mykey setll record
> if %equal
> do *HIVAL
> mykey reade record
> if %eof leave
> ... process ...
> enddo
> endif

Here's my take on this that hopefully makes good sense.  Looking at the
typical C way:

while ((fscanf(outfile, "%c", &c))!=EOF)
{
   do stuff...
}

we notice that all the logic that determines when a loop is executed or
exited is in one place.  You can easily tell that the loop will be run
depending on fscanf() and will only exit when fscanf() reaches EOF.

RPG has more than one way to code in a similar way.  But I think the goal
should be to make it easily discernable what will cause the loop to
execute and what will cause it to exit.  Keep the logic that does that in
one place: at the top of the loop.  This makes it immediately obvious how
the loop is designed to work.  One way to keep that logic together is to
use Style #2 that you mention.

Style #1 does not keep the logic together and therefore does not make it
immediately obvious how the loop is designed to work.  For this reason I
feel that Style #1 is poor programming style and should be avoided.

James Rich

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 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.