comp.lang.ada
 help / color / mirror / Atom feed
From: Rick H <rik_nntp@dsl.pipex.com>
Subject: Re: Instantiating private types with discriminants?
Date: Wed, 10 May 2006 16:52:32 -0500
Date: 2006-05-10T16:52:32-05:00	[thread overview]
Message-ID: <HeidnX-p77c9_f_ZRVny1Q@pipex.net> (raw)
In-Reply-To: 87d5elk8e9.fsf@ludovic-brenta.org

Ludovic Brenta <ludovic@ludovic-brenta.org> wrote:
> Here is a complete, working example, in case you're confused.  It
> summarises everything we've said before: package (possibly, like here,
> nested in the procedure), freezing rules, abstract procedure in the
> base type, no access type, and declaring the object at the last
> moment.
> 
> Now, can you answer this question: which subprograms in that example
> are primitive and which ones are not?
> 
Thanks, Ludovic.  I extented your example by parameterising Get
and creating two versions:

function Get (Item : Integer) return General_T'Class is
begin
   return Type_A' (Data => Item);
end Get;

function Get (Item : Float) return General_T'Class is
begin
   return Type_B' (Data => Item);
end Get;

and then Var_A can be declared as either of:
Var_A : General_T'Class := Get (10);
or
Var_A : General_T'Class := Get (10.0);


But all this has a side-effect that I haven't considered: the fact
that a variable declared as a class-wide type *requires* initialization
means that the compiler can determine the variable's type statically.
This means that the following will raise a constraint error:
declare
   Var_A : General_T'Class := Get (10);  -- Type_A
begin
   Put (Var_A);
   Ada.Text_IO.New_Line;
   Var_A := Get (100.0);      -- Type_B - constraint error!
   Put (Var_A);
end;



  reply	other threads:[~2006-05-10 21:52 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-05-09 13:17 Instantiating private types with discriminants? rick H
2006-05-09 13:45 ` Georg Bauhaus
2006-05-09 14:06   ` rick H
2006-05-09 13:56 ` Ludovic Brenta
2006-05-09 14:24   ` rick H
2006-05-09 19:48     ` Ludovic Brenta
2006-05-09 14:05 ` Dmitry A. Kazakov
2006-05-09 14:48 ` rick H
2006-05-09 15:20   ` Jerry Petrey
2006-05-09 15:42     ` rick H
2006-05-09 15:53   ` Avoiding use Ada.Tags (was Re: Instantiating private types with discriminants?) Alex R. Mosteo
2006-05-09 16:01   ` Instantiating private types with discriminants? Dmitry A. Kazakov
2006-05-10  7:42     ` rick H
2006-05-10  9:09       ` Ludovic Brenta
2006-05-10 11:49         ` Georg Bauhaus
2006-05-10 13:44         ` rick H
2006-05-10 14:21           ` Ludovic Brenta
2006-05-10 15:10             ` rick H
2006-05-10 15:45               ` Ludovic Brenta
2006-05-10 14:41           ` Dmitry A. Kazakov
2006-05-10 15:34             ` rick H
2006-05-10 19:01               ` Georg Bauhaus
2006-05-10 19:05                 ` Ludovic Brenta
2006-05-10 21:52                   ` Rick H [this message]
2006-05-11  1:17                     ` Jeffrey R. Carter
2006-05-11  7:44                     ` Dmitry A. Kazakov
2006-05-11  8:27                       ` rick H
2006-05-11 10:28                         ` Dmitry A. Kazakov
2006-05-11 15:59                           ` Robert A Duff
2006-05-12  7:37                             ` Dmitry A. Kazakov
2006-05-12  9:24                               ` Georg Bauhaus
2006-05-12 12:40                                 ` Dmitry A. Kazakov
2006-05-12 18:25                                   ` Randy Brukardt
2006-05-09 19:57   ` "Use" and "=" for Tags (was: Re: Instantiating private types with discriminants?) Jeffrey R. Carter
replies disabled

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