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.1 required=5.0 tests=AXB_XMAILER_MIMEOLE_OL_024C2, BAYES_00,MAILING_LIST_MULTI,REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8a602a7f65bebaea X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-10-17 12:42:04 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!skynet.be!skynet.be!freenix!enst.fr!not-for-mail From: "David C. Hoos" Newsgroups: comp.lang.ada Subject: Re: Abstract methods in ADA95 Date: Thu, 17 Oct 2002 14:41:35 -0500 Organization: ENST, France Sender: comp.lang.ada-admin@ada.eu.org Message-ID: References: <20021017-143635-828420@foorum.com> <3DAF0ECE.7080204@acm.org> Reply-To: comp.lang.ada@ada.eu.org NNTP-Posting-Host: marvin.enst.fr Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: avanie.enst.fr 1034883723 21485 137.194.161.2 (17 Oct 2002 19:42:03 GMT) X-Complaints-To: usenet@enst.fr NNTP-Posting-Date: Thu, 17 Oct 2002 19:42:03 +0000 (UTC) Return-Path: X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org X-Mailman-Version: 2.0.13 Precedence: bulk List-Unsubscribe: , List-Id: comp.lang.ada mail<->news gateway List-Post: List-Help: List-Subscribe: , Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org Xref: archiver1.google.com comp.lang.ada:29882 Date: 2002-10-17T14:41:35-05:00 ----- Original Message ----- From: "Jeffrey Carter" Newsgroups: comp.lang.ada To: Sent: Thursday, October 17, 2002 2:26 PM Subject: Re: Abstract methods in ADA95 > Hector Hugo wrote: > > Hello, i'm new programing in Ada95, i come from C++ world and i've got problems > > when i try to use abstract methods in Ada95. I'm trying to do something similar > > to this but in Ada95: > > There are no "methods", abstract or otherwise, in Ada. Ada has > subprograms and entries; subprograms are either procedures or functions. > Nary a method in sight. > > I'm hardly a C++ expert, but IIRC there are also no "methods" in C++. > C++ has only functions. In C++, member functions of a class are called "methods."