it works on 32-bit platform.but not 64-bit here is the exzample
TVerbInfo = packed record
Verb: Smallint;
Flags: Word;
end;
var
VerbInfo: TVerbInfo;
strList : TStringList;
verb : Smallint;
flags : Word;
begin
strList := TStringList.create();
.....
verbInfo.verb := verb;
verbInfo.flags := flags;
strList.addObject('verb1',TObject(VerbInfo)); //invalid typecast happened here
end;
can anyone help me? thank you very much
I think you have to run this on different platforms and compare results
I suspect you cannot do a hardcast, because the sizes differ.
You may try to use workarounds like
You can also try to use
TDictionary<String, TVerbInfo>
type instead ofTStringList
Your cast
TObject(VerbInfo)
will compile provided thatSizeOf(TObject) = SizeOf(TVerbInfo)
. ButTObject
is a pointer and so its size varies with architecture. On the other hand,SizeOf(TVerbInfo)
does not vary with architecture. Hence the cast can only work on one architecture.Using casts like this is how you had to do things in pre-generics Delphi. But nowadays, you should be using generic containers.
For instance, if you have a list and the strings are unique then you can use a dictionary:
If it is possible for there to be duplicate strings then you would need a new record declaration:
And then store a list of these in
One final point is that you should avoid using packed records. These result in mis-aligned data structures and that in turn leads to poor performance.
You can try something like this: