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=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8b8748382fcfacc1 X-Google-Attributes: gid103376,public From: Alfred Hilscher Subject: Re: friend classes in ada95 Date: 2000/04/19 Message-ID: <38FD7F1A.E4906194@icn.siemens.de>#1/1 X-Deja-AN: 613064384 Content-Transfer-Encoding: 7bit References: <38F6B617.34E216A7@emw.ericsson.se> <38F887AE.8CDA24E0@acm.org> <8dc8oi$kda$1@nnrp1.deja.com> X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Organization: Siemens AG Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 2000-04-19T00:00:00+00:00 List-Id: Robert Dewar wrote: > Jean argued that Ada 95 would be far more accessible to the > object oriented cognoscenti if it was willing to embrace the > term class more enthusiastically, and he suggested that > > type x is tagged record .... > > be replaced by > > class type x is record .... > I would have preferred this notation too. 1. "class type t is ..." and "t'class" would be more clear than "type t is tagged ..." and "t'class" 2. I have to write task type t is and not type t is concurrent ...