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



I don't like LIKE in a prototype probably because of your reason 2, but 
worded differently.  I put my prototypes in a /copy.  I don't want to have 
to count on the variable I am doing a LIKE on existing in the program I 
add the prototype to.

Rob Berendt
-- 
Group Dekko Services, LLC
Dept 01.073
PO Box 2000
Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com





"Paul Morgan" <pmorgan@xxxxxxxxxxxxxx> 
Sent by: rpg400-l-bounces@xxxxxxxxxxxx
01/07/2005 10:46 AM
Please respond to
RPG programming on the AS400 / iSeries <rpg400-l@xxxxxxxxxxxx>


To
rpg400-l@xxxxxxxxxxxx
cc

Subject
Re: Exported Variables (was Long Constant Names)






Barbara,

Pass-by-copy would be best.  Good to see that it's on a future enhancment
list.

BTW, I object to using LIKE definition in a prototype because:

1) It violates the idea of a procedure as being immutable.  If the 
interface
changes it requires retesting.  You want to avoid changing the interface 
at
all costs.  Better to write a new replacement interface if the variable
changes. (this also applies to LIKE definitions in a procedure interface)

2) It sort of defeats the purpose of encapsulation.  Another variable must
be brought out of the internals of the procedure just to use the 
prototype.
Why make me code a data structure or variable just to define a parameter 
in
a prototype?  More extra variables I don't really need in my calling
program.  Makes the procedure unwieldily.

Paul

-- 
Paul Morgan
Senior Programmer Analyst - Retail
J. Jill Group
100 Birch Pond Drive, PO Box 2009
Tilton, NH 03276-2009
Phone: (603) 266-2117
Fax:   (603) 266-2333
"Barbara Morris" wrote

> I think CONST is working correctly to stop the compile.  (We do have a
> "pass by copy" parameter-passing-mode on our possible future
> enhancements list.)
>
> Defining the parameter-passing temporary LIKE the constant would only
> work if it was the same type as the prototyped parameter. I guess it
> would be a good practice to define every by-reference prototyped
> parameter LIKE or LIKEDS something, so that temporaries could be easily
> defined LIKE or LIKEDS the same thing.
>
>  D myproc_types         ds              qualified
>  D                                      based(typedef_dummy)
>  D   myparm                        10a
>
>  D myproc               pr
>  D   myparm                             like(myproc_types.myparm)
>
>  ...
>
>  D myparmTemp           s               like(myproc_types.myparm)

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



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

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.