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,b0d569080889afd6 X-Google-Attributes: gid103376,public From: Mike Subject: Re: A question for my personal knowledge. Date: 1999/05/13 Message-ID: <7hfctj$1kb4@drn.newsguy.com>#1/1 X-Deja-AN: 477566345 References: <1VEZ2.1515$I51.88140@carnaval.risq.qc.ca> <37372A84.641F2133@bigfoot.com> <7h8oe8$2js$1@cf01.edf.fr> <37382B0C.A95B6745@bigfoot.com> <7h9o21$9v4$1@nnrp1.deja.com> <7h9pei$aut$1@nnrp1.deja.com> <373AC668.4824FF07@decada.enet.dec.com> Organization: Newsguy News Service [http://www.newsguy.com] Newsgroups: comp.lang.ada Date: 1999-05-13T00:00:00+00:00 List-Id: In article <373AC668.4824FF07@decada.enet.dec.com>, Mike says... >If I were to teach programming today, I'd choose Ada 95 as the vehicle. >It is a serious detriment to pedagogy (and to programming!) to muddle >together the vehicle of polymorphism and the vehicle of abstraction as >C++ does. (This impinges on the discussion in another thread, which I >will nevertheless refrain from joining.) In case it is inobvious to >some what I'm referring to, I mean the tagged type for polymorphism and >the package for abstraction; in C++ these both become classes. And what is wrong with that? a class serves as abstraction and polymorphism. it is simpler really. Ada OO mechanism is not simple and I find it confusing. a class is the most basic concept in OO, and Ada does not have it. No wonder all heavely used OO languages today use the class concept (C++, Java) even Simula the original OO language used a class to represent objects with. All except Ada does it different. Mike