comp.lang.ada
 help / color / mirror / Atom feed
From: "Robert I. Eachus" <rieachus@attbi.com>
Subject: Re: Problems with tagged records and inheritance
Date: Thu, 10 Jul 2003 22:24:27 GMT
Date: 2003-07-10T22:24:27+00:00	[thread overview]
Message-ID: <3F0DE779.7070204@attbi.com> (raw)
In-Reply-To: bekkpr$12eg$1@ulysses.noc.ntua.gr

Papastefanos Serafeim wrote:
> I have using a base type like this:
> ...
> type Base is tagged private;
> ...
-- Foot, bullet, shoot.
> type Base is tagged record
>          AAA: Integer:=1;
>       end record;
> 
> and a child type like this
> 
> type Child is new Base with private;
> ....
> type Child is new Base with record
>         BBB: Integer:=5;
>       end record;
> 
> The problem is that the following is not working:
> 
>    procedure Test(Ch: in Child) is
>    begin
>       Put(Ch.AAA); --<- This line has an error, it says no selector AAA for
> type Child
>       Put(Ch.BBB);
>    end Test;
> The procedure Test is declared in the same package
> as the type Child and defined at the package's Body.

Why would you expect this to work?  You explicitly limited the knowledge 
of AAA to within the package where Base is declared, and in its 
childred.  You can "fix" the problem by adding an inquiry function to 
the package containing Base:  Put(Contents(Base(Ch))); (You need a view 
conversion to call it.)  Or you can fix it by making the package that 
declares Child a child package of the one that contains Base.  Or you 
can just make AAA public.

I don't know what the "right" fix is because I have no idea what you are 
trying to do.  But information hiding in Ada is not partial.  There are 
some interesting issues that come up with three levels of derivation, 
and even with two levels you could have Child with two components named 
AAA, but never visible in the same contexts...

> The error is becouse AAA is not part of Child.
> Why is that ? I thought that Child would contain
> AAA and BBB, and not only BBB...

It contains both.  The issue is where each is visible.  As I pointed 
out, both could be named AAA (not a change you want to make).  Since 
either AAA or BBB is visible but not both, there would be no problem if 
they had the same name.


-- 

                                                        Robert I. Eachus

�In an ally, considerations of house, clan, planet, race are 
insignificant beside two prime questions, which are: 1. Can he shoot? 2. 
Will he aim at your enemy?� -- from the Laiden novels by Sharon Lee and 
Steve Miller.




  parent reply	other threads:[~2003-07-10 22:24 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-07-10 20:56 Problems with tagged records and inheritance Papastefanos Serafeim
2003-07-10 22:15 ` Re; " tmoran
2003-07-10 22:24 ` Robert I. Eachus [this message]
2003-07-10 22:29 ` Ludovic Brenta
2003-07-11 11:56   ` Marin David Condic
2003-07-11 11:49 ` Papastefanos Serafeim
2003-07-15  1:34 ` Richard Riehle
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox