vote up 2 vote down star
1

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

flag

73% accept rate
1  
What happened when you typed that into Delphi and compiled? – Rob Kennedy Apr 27 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 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 at 6:33

1 Answer

vote up 5 vote down check

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|flag

Your Answer

Get an OpenID
or

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