MB

726
Reputation
95 views

Registered User

Name MB
Member for 1 year
Seen Sep 14 at 19:41
Website
Location
Age
2d
awarded  Popular Question
Sep
17
awarded  Yearling
Aug
17
comment Converting a Double to an Integer for GetHashCode in Delphi
Not a bad idea, but wouldn't it cause trouble if Value is greater than the maximum size that Single allows? Also if you have lots of doubles that round to the same Integer value you'll get a lot of duplicated hashcodes.
Aug
17
comment Converting a Double to an Integer for GetHashCode in Delphi
Will do. Appreciate the input Mason.
Aug
17
comment Converting a Double to an Integer for GetHashCode in Delphi
Actually... I just wrote a couple of simple test cases using TDictionary. I made an object containing one field - an integer. If two of these objects contain the same integer I want them to be considered equal, so I overrided Equals to specify that. But I also want to use these objects as keys in TDictionary. I want to be able to access the value for any particular key by having an equal object (equal according to my Equals, not memory address). Anyway, unless I messed up somehow, my tests showed that you actually need to override GetHashCode as well as Equals if you want this to work.
Aug
17
comment Converting a Double to an Integer for GetHashCode in Delphi
Hmm yes I think you're right there. GetBucketIndex uses FComparer, internal to TDictionary, but by default it looks like that does an identity comparison. So, whilst in Java "equal objects must have equal hash codes" is the rule that means you have to override hashCode a lot, it appears that that's not the case in Delphi... That's good :)
Aug
17
comment Converting a Double to an Integer for GetHashCode in Delphi
Indeed I think it would cause trouble if you used mutable objects as keys in a hashtable, and then modified them while they were in the hashtable. But I think you need to override GetHashCode if you override Equals. That's how it works in Java anyway. Is there anything different about Delphi in that respect (I'm not all that clued up when it comes to Delphi)? As I understand it, hashtables (and presumably TDictionary) typically rely on both GetHashCode and Equals to locate a particular item.
Aug
17
comment Converting a Double to an Integer for GetHashCode in Delphi
Excellent - that seems to work great, thanks :)
Aug
17
comment Converting a Double to an Integer for GetHashCode in Delphi
I think you need to override GetHashCode if you're overriding Equals, if you want the objects to work as keys in a dictionary. Sometimes you want to override Equals so as to compare the object's fields to test whether two objects are equal, as opposed to just testing to see if they're the exact same instance.
Aug
17
comment Converting a Double to an Integer for GetHashCode in Delphi
Thanks Gamecat. Those methods seem to work well for some double numbers, but you get a lot of double numbers that give the same integer figures. For example, it seems that all whole numbers give an integer value of zero. Might it be possible to improve on this somehow to reduce the chances of hash codes being identical? Or is this just because I'm testing with regular patterns of numbers?
Aug
17
asked Converting a Double to an Integer for GetHashCode in Delphi
Jul
29
comment Displaying time and timezone information to the user (what, not how)
Great point about using relative times when possible.
Jul
7
comment Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an “asm pop…”?
Thanks for the links ChrisW.
Jul
7
comment Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an “asm pop…”?
MSDN doesn't seem to have much to say about pascal other than that it's "obsolete" according to the link that ChrisW kindly pointed to: msdn.microsoft.com/en-us/library/… I hunted through the code in the XLL SDK and I couldn't find anything defining pascal as stdcall or anything else, so it's a bit of a mystery. But things are working fine now the array issue is fixed so I'm satisfied albeit still a bit confused (as I usually am with Win32...) :)
Jul
7
comment Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an “asm pop…”?
Fantastic! As far as I can tell it's working perfectly. Define the function as function Excel4v(xlfn: Integer; operRes: LPXLOPER; count: Integer; opers: PLPXLOPER): Integer; stdcall; external 'xlcall32.dll'; then to call it, make a Delphi array of LPXLOPER, and call Excel4v with @myArray[0] for PLPXLOPER. Works great, with stdcall, and no need for suspect-looking asm pop calls :)
Jul
7
comment Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an “asm pop…”?
Thanks Michael, that sounds like the explanation to me :) I'll play about with it a bit to be sure and comment again when I am.
Jul
7
comment Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an “asm pop…”?
I tried specifying it as pascal but I couldn't get any calls to it to work then. But the function definitely does work properly with stdcall, provided it's followed with the "asm pop..." line. The article at rvelthuis.de/articles/articles-convert.html/… mentions pascal having a counter-intuitive meaning though it's not all that specific.
Jul
7
asked Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an “asm pop…”?
Jun
16
awarded  Popular Question
Jun
9
awarded  Popular Question