vote up 6 vote down star

I have the following code:

var
  sl: THashedStringList;
begin
  sl:= THashedStringList.Create;
  sl.Duplicates := dupIgnore;
  sl.Add('12345');
  sl.Add('12345');
  sl.Add('12345');
  sl.Add('12345');
  sl.Add('12345');
  sl.Add('12345');
  sl.Add('12345');
  ShowMessage(IntToSTr(sl.Count));
end;

But when I see sl.Count, it gives me 7. What is the bug in this?

flag

56% accept rate

1 Answer

vote up 12 vote down check

You need to set the Sorted property to TRUE in order to have the list ignore duplicates. The property is inherited from TStringList, and if you look at the documentation for TStringList.Duplicates you will find:

Note: Duplicates does nothing if the list is not sorted.

link|flag
4  
And that's because THashedStringList inherits its Duplicates property from TStringList, as well as its behavior for the Add method. There's nothing special about THashedStringList in this Pavan's example. – Rob Kennedy Jun 30 at 15:59
Thanks for the comment, I edited the answer accordingly. – mghie Jun 30 at 16:05
Sorry, dumb mistake. – Pavan Jun 30 at 16:24
@Pavan, no good question. – skamradt Jun 30 at 20:17

Your Answer

Get an OpenID
or

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