vote up 8 vote down star
1

Hi,

I'm pretty frustrated. I'm using Delphi 2009 and was very happy about the inclusion of generics in this version of Delphi. Everything worked great at the beginning, but now that I use generics all over the place I run into problem after problem - most of the time some internal errors, where I don't even see where exactly they are caused. I tried restructuring the code multiple times to avoid the problems with generics but always run into new problems further down the line.

Now I decided to remove generics alltogether and use some dynamic casts to specialize my classes. Not very thrilled about it but i just don't see another option. I can't spend my day tracking down Delphi's internal compiler errors...

Is anybody using generics in a large project without running into such problems? Is it my fault perhaps? Or is it just not possible to use them in complex projects?

I hope D2010 fixes all this stuff.

flag

73% accept rate
1  
Ouch ... internal compiler errors? That's definitely a big no-no for Delphi. I haven't used Delphi for 10 years or so, but what you're saying seems awful. – Pop Catalin Sep 8 at 10:17
With the introduction of Delphi 2 (a loong time ago), which was the first version of Delphi with a 32-bit compiler, I had a bunch of internal errors too. Seems like Borland/Inprise/... have trouble shipping well tested new features in new versions of their compilers. – Lucero Sep 8 at 10:18
2  
This is not a discussion forum. Do you have a real programming question? – Argalatyr Sep 8 at 10:24
My question would be: is it possible to use D2009 generics in large projects? This is clearly a programming question since it affects how I'm gonna write my code :) – Smasher Sep 8 at 10:26
Edited the title to make it less subjective. – Smasher Sep 8 at 10:39

3 Answers

vote up 11 vote down check

I'm using generics extensively in Delphi 2009, and I can say it's not easy as you are often required to work around an ICE. Even worse, generics even mess up with the linker, i.e. you can't really use them in packages (except for C++Builder packages).

All this trouble seems to be gone in Delphi 2010; I hardly ever saw an ICE due to generics. I need my code to work with both 2009 and 2010 though :(

link|flag
vote up 7 vote down

Generics support in D2009 was really bad at first. Update 3 fixes a lot of things, but not everything, and leaves at least one serious bug in Generics.Collections.pas. In some ways, it actually got worse, since now instead of giving you a syntax error when the compiler chokes on some generic construct, you'll often get an internal compiler error and you don't know what's causing it.

It's been improved quite a bit for 2010. There are still a few generics-related problems in rather obscure cases, but they're generally safe to use as long as you're not using packages or putting generics inside of class helpers or strange things like that.

Bottom line: if you want to use them, upgrade to 2010.

link|flag
vote up -5 vote down

Very bad to hear that generics don't work in D2009. I bought D2009 last year, because of that feature (but didn't use it much so far). It's actually a shame that a big company is making advertising with features, which don't work! To bad that there is no warranty on software products, otherwise I would exchange it.

link|flag
7  
Even though I agree with your sentiment - StackOverflow isn't the place to exchange such opinions. Please consider deleting this, as it's no answer to the question Smasher has. – mghie Sep 8 at 13:55
2  
-1 You gave a statement in stead of an answer. – Jeroen Pluimers Sep 8 at 20:34
How can I delete it? Just have the option link|edit|flag – markus_ja Sep 9 at 5:54

Your Answer

Get an OpenID
or

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