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: <34BBBA7C.C66@gsfc.nasa.gov>#1/1 X-Deja-AN: 315615142 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? A) concatenate "abc" and "xyz", getting "abczyz". Then convert to some other string type. B) me for one :) Note that if "+" is defined to take String, it should also be defined to take Wide_String. (Does Java support Unicode?) -- - Stephe