Once a generic type is defined, it can be used to generate other types: this is like replaying the definition of the types, with the template placeholders filled in with actual type definitions.
This can be done in any Type definition block. The specialized type looks as follows:
_________________________________________________________________________________________________________
Specialized type
___________________________________________________________________
Which is a very simple definition. Given the declaration of TList in the previous section, the following would be a valid type definition:
As of version 3.0 of Free Pascal, the specialize keyword can also be used in a variable declaration:
The specialize keyword is part of the specialized type, so when using fully qualified names, the specialize keyword must be after the unit name and parent type names.
The type in the specialize statement must be known, except in another generic type definition. Given the two generic class definitions:
Then the following specialization is not valid:
because the type TMyFirstType is a generic type, and thus not fully defined. The compiler will complain:
However, the following is allowed:
because TA is already fully defined when TB is specialized.
However, the specialize keyword can be used in another generic type definition as shown in the example above:
and
In these definitions, the specialization is only performed when the generic type itself is specialized, and at that time, the types are known.
Remark It is not possible to make a forward definition of a class which is a specialization of a generic, i.e. the following will not compile: