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,fba93c19bb4e7dbd X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-07-18 14:35:19 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!nntp.cs.ubc.ca!logbridge.uoregon.edu!arclight.uoregon.edu!wn13feed!wn12feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi_feed4!attbi.com!sccrnsc02.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Q: Endless loop by dispatching References: <3F1857E4.60702@attbi.com> X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 12.234.13.56 X-Complaints-To: abuse@comcast.net X-Trace: sccrnsc02 1058564118 12.234.13.56 (Fri, 18 Jul 2003 21:35:18 GMT) NNTP-Posting-Date: Fri, 18 Jul 2003 21:35:18 GMT Organization: Comcast Online Date: Fri, 18 Jul 2003 21:35:18 GMT Xref: archiver1.google.com comp.lang.ada:40488 Date: 2003-07-18T21:35:18+00:00 List-Id: What was programmer of Root trying to accomplish when he said > type Root_Type is tagged private; It seems to me he was trying to say "If you declare a child type and procedures Initialize or Finalize or Adjust, don't expect them to be called as if Root_Type was Controlled. If he wanted to let derived types be Controlled, he should have said: > type Root_Type is new Ada.Finalization.Controlled with private; > But to not be able to declare Leaf.Initialize > as overriding defeats the whole point. Defeats what point?