sergio
sergio

Reputation: 75

Ada generics at run-time

How would you instantiate a generic at runtime instead of at compile time. Example without using new.

Upvotes: 0

Views: 541

Answers (1)

user571138
user571138

Reputation:

You cannot do this without use of new . You can do it in any declarative section, however that generic will only be extant for the duration of the scope of that declaritive section.

for example (not compiled ada-like pseudocode):

get(length)
declare
   package stack is new stack_generic (max_stack_size => length);
begin
   stack.push();
   ...
end;
-- stack package no longer in scope. 

Does this help ?

Upvotes: 2

Related Questions