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

I'm trying to resize an array of a certain class passed as an argument, e.g.

procedure Resize(MyArray: Array of TObject);
begin
  SetLength(MyArray, 100);
end;

However, this raises an error "E2008 Incompatible types". Is it true that you can't do this (I've seen rumors, but no official documentation) or am I doing something wrong?

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

You didn't defined the type explicitly. So the compiler has problems matching them. If you define the type like:

type
  TObjectArray = array of TObject;

There is no doubt about it and (thanks to Mghie) you should be using a var parameter because resising likely cause a change in the pointer.

procedure Resize(var MyArray: TObjectArray);
begin
  SetLength(MyArray, 100);
end;
link|improve this answer
2  
Should be a var parameter? – mghie Oct 29 '09 at 8:53
Good point. Corrected it. – Gamecat Oct 29 '09 at 8:57
feedback

You are mixing open arrays (the parameter of Resize) and dynamic arrays (what SetLength expects). See here for an explanation - especially the part titled "Confusion".

link|improve this answer
Thanks Gerhardt. I'm still learning this stuff. :) – conciliator Nov 3 '09 at 8:42
feedback

Your Answer

 
or
required, but never shown

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