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



Thanks for the feedback Tony & Lim.

Kurt Anderson
Application Developer
Highsmith Inc

-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Tony Carolla
Sent: Wednesday, July 27, 2005 1:39 PM
To: RPG programming on the AS400 / iSeries
Subject: Re: Procedure Parameter Passing - Processing Implications of
Const

On 7/27/05, Kurt Anderson <kjanderson@xxxxxxxxxxxxx> wrote:
> 
> When I define a procedure parameter as Const:
> 1. The caller passes a pointer to the procedure, which the procedure 
> then interprets.
> 2. If I pass an array 32555A Dim(9000), it's no different than if I 
> pass a 3i 0 field (processing-wise)?
> 
> I question this because if I can pass an expression, there is no 
> pointer to that expression... so what is it doing?


Correct. When you pass a parm by reference (the default), only a pointer
is passed. Therefore, if you pass a huge 32555A dim(9000), or a 3I 0,
only the pointer is passed. If you specify to pass the parms by VALUE,
then you are passing the entire contents byte-by-byte. 

The CONST keyword on a parameter spec has a few desirable effects. First
of all, if you specify a 5S 0 parameter with the CONST keyword, then you
can use any numeric field to pass to it in your code. If you pass a 10P
0 to the procedure, the system will create a temporary 5S 0 field, place
the contents of the 10P 0 in the temporary field, and pass the parm
(pointer) to the procedure. If you specify an expression, the same thing
happens. The expression is resolved, moved to a temporary field, and a
pointer to the temporary field is passed to the procedure. This is a
good reason to always check for value limits when passing a potentially
larger variable to a subprocedure parm with CONST specified. The
compiler will not balk, but at runtime, if an overflow occurs, you will
get an exception. 

--
"Enter any 11-digit prime number to continue..."
"In Hebrew SQL, how do you use right() and left()?..." - Random Thought
"If all you have is a hammer, all your problems begin to look like
nails"
--
This is the RPG programming on the AS400 / iSeries (RPG400-L) mailing
list To post a message email: RPG400-L@xxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives at
http://archive.midrange.com/rpg400-l.



As an Amazon Associate we earn from qualifying purchases.

This thread ...


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.