up vote 2 down vote favorite
1
share [g+] share [fb]

Is it possible to derive a class from a specialized generic type:

TGenericBase <T> = class
  // ...
end;

TSpecializedDerived = class (TGenericBase <String>)
  // ...
end;

Just wondering if this is possible at all...

EDIT Code works fine when I put it in a new project. Must be due to some other mistake; sorry about that

link|improve this question

1  
What happened when you typed that into Delphi and compiled? – Rob Kennedy Apr 27 '09 at 17:24
I got an internal error at the end of the derived class. I'm not at work right now, but I will update the question tomorrow. – Smasher Apr 27 '09 at 19:03
Okay, I extracted the relevant part in a new project and it compiles fine...I guess I have to apologize...the error must be somewhere else - although the compiler indiciates, that an internal error ocucrs at exactly that position... – Smasher Apr 28 '09 at 6:33
feedback

1 Answer

up vote 5 down vote accepted

Yes. I do it all the time. It's very useful. One of my favorite tricks goes something like this:

TSpecializedList = class(TObjectList<TMyType>)
public
 (extra methods specific to handling TMyType objects)
end;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.