From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=BAYES_00,INVALID_MSGID, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,3d6ef988ec3a5ef7 X-Google-Attributes: gid103376,public From: Stephen Leake Subject: Re: renaming Interfaces.Java.Ada_To_Java_String to the + operator Date: 1998/01/13 Message-ID: <34BBBB88.DDE@gsfc.nasa.gov>#1/1 X-Deja-AN: 315615143 Content-Transfer-Encoding: 7bit References: <01bd1e34$1632c2c0$24326489@Westley-PC.calspan.com> <34bba5a1.224459@SantaClara01.news.InterNex.Net> Mime-Version: 1.0 Reply-To: Stephen.Leake@gsfc.nasa.gov Content-Type: text/plain; charset=us-ascii Organization: NASA Goddard Space Flight Center -- Greenbelt, Maryland USA Newsgroups: comp.lang.ada Date: 1998-01-13T00:00:00+00:00 List-Id: Tom Moran wrote: > > What does > +"abc"&"xyz" > mean, and, more importantly, how many people know without having to > look it up? Oops, I forgot to think about operator precedence in my first post (I see now that is the point of Tom's post :(. This means: convert "abc" to some other type, then concatenate "xyz" The responsible package author will overload "&" as well as "+", to handle this correctly, as the reader's first impulse expects :). -- - Stephe