× 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.



Aaron Bartell wrote:
If you look at it, the code

custIsVld = (custNbr > 0);

is basically an IF statement with the
result being passed to a variable vs. being evaluated by the IF construct.

Is that a correct way to view it?

I think it's more general than that. It's just an extension of assigning the result of an expression to a variable, as in

sum = a + b;

'a + b' is an expression, just as 'custNbr > 0' is an expression. In some languages you can even do

grandTotal += (subtotal = price * quantity);

to add the calculate the subtotal, then add it to the grand total. Whether you should is, of course, debatable.

For this to work in RPG, there would need to be some way to tell the compiler whether that '=' was meant as an equality operator or an assignment operator. As far as I know, there isn't a way to do multiple assignments in one EVAL statement.

As an Amazon Associate we earn from qualifying purchases.

This thread ...

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.