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,6b6619eb9cada212 X-Google-Attributes: gid103376,public From: Hyman Rosen Subject: Re: Help me to chose between ADA 95 and C++ Date: 1999/12/15 Message-ID: #1/1 X-Deja-AN: 561082345 Sender: hymie@calumny.jyacc.com References: <01bf37fb$a91afb60$0564a8c0@IS-D2D04C.test> <829rbv$a8m$1@nntp6.atl.mindspring.net> <01bf3e32$0b9dc880$022a6282@dieppe> <385112AE.7E2CFA9@rdel.co.uk> <3855e3cd_1@news1.prserv.net> <38561A6C.5DE3D901@rdel.co.uk> <38566d0a_4@news1.prserv.net> X-Complaints-To: abuse@panix.com X-Trace: news.panix.com 945287069 26520 209.49.126.226 (15 Dec 1999 19:44:29 GMT) Organization: PANIX Public Access Internet and UNIX, NYC NNTP-Posting-Date: 15 Dec 1999 19:44:29 GMT Newsgroups: comp.lang.ada Date: 1999-12-15T19:44:29+00:00 List-Id: "Matthew Heaney" writes: > I could argue the point the other way. In C++, the keyword "virtual" is > used so often for so many different things, that it's hard to keep them > all straight. No, no, you're thinking of the keyword "static" :-) The keyword virtual is used for only two completely different things. A virtual method is dispatching. A virtual base class is present only once in a derived object, regardless of how many times it appears in the inheritance hierarchy (as virtual).