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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,1116ece181be1aea X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-09-15 01:30:02 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!newsfeed.vmunix.org!npeer.de.kpn-eurorings.net!news.uni-stuttgart.de!carbon.eu.sun.com!new-usenet.uk.sun.com!not-for-mail From: olehjalmar kristensen - Sun Microsystems - Trondheim Norway Newsgroups: comp.lang.ada Subject: Re: Is the Writing on the Wall for Ada? Date: 15 Sep 2003 10:20:59 +0200 Organization: Sun Microsystems Inc., http://www.sun.com/ Message-ID: References: <3F5F7FDC.30500@attbi.com> <3F6079A9.6080108@attbi.com> <3F60E380.4020307@attbi.com> NNTP-Posting-Host: khepri06.norway.sun.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: new-usenet.uk.sun.com 1063614059 20945 129.159.112.195 (15 Sep 2003 08:20:59 GMT) X-Complaints-To: usenet@new-usenet.uk.sun.com NNTP-Posting-Date: 15 Sep 2003 08:20:59 GMT User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.2 Xref: archiver1.google.com comp.lang.ada:42511 Date: 2003-09-15T08:20:59+00:00 List-Id: >>>>> "RIE" == Robert I Eachus writes: RIE> interfaces and mix-ins. But type inheritance cannot be from two RIE> concrete parents, no matter what the language--one parent has to be RIE> abstract. So anyone who condemns Ada for not adding what cannot be RIE> done needs to get a life. What do you mean by "concrete parents"? class a { public: void foo(); }; class b { public: void bar(); }; class c: public a, public b{ }; Works just fine, and there is nothing abstract about a and b. What's the problem? RIE> -- RIE> Robert I. Eachus RIE> "As far as I'm concerned, war always means failure." -- Jacques RIE> Chirac, President of France RIE> "As far as France is concerned, you're right." -- Rush Limbaugh