gpt4 book ai didi

Delphi TObjectDictionary 具有类实例键

转载 作者:行者123 更新时间:2023-12-03 15:12:07 32 4
gpt4 key购买 nike

我有以下class :

TTest = class
private
FId: Integer;
FSecField: Integer;
FThirdField: Integer;
public
constructor Create(AId, ASecField, AThirdField: Integer);
// .....
end;

然后我创建一个 TObjectDictionary像这样:

procedure TMainForm.btnTestClick(Sender: TObject);
var
TestDict: TObjectDictionary<TTest, string>;
Instance: TTest;
begin
TestDict := TObjectDictionary<TTest, string>.Create([doOwnsKeys]);

try
TestDict.Add(TTest.Create(1, 1, 1), '');

if TestDict.ContainsKey(TTest.Create(1, 1, 1)) then
ShowMessage('Match found')
else
ShowMessage('Match not found');

Instance := TTest.Create(1, 1, 1);
TestDict.Add(Instance, 'str');

if TestDict.ContainsKey(Instance) then
ShowMessage('Match found')
else
ShowMessage('Match not found');
finally
TestDict.Free;
end;
end;

结果是:“未找到匹配”、“找到匹配”。我应该怎么做才能比较每个键的字段值而不是它们的地址?

最佳答案

实例引用变量的默认相等比较器比较引用而不是对象。因此,您获得的是对象标识而不是值标识。

因此,如果您希望强加值同一性,则需要提供自定义相等比较器。

TestDict := TObjectDictionary<TTest, string>.Create(
[doOwnsKeys],
TEqualityComparer<TTest>.Construct(EqualityComparison, Hasher)
);

其中EqualityComparisonHasher是比较和哈希函数。它们可以这样实现:

EqualityComparison := 
function(const Left, Right: TTest): Boolean
begin
Result := (Left.FId = Right.FId)
and (Left.FSecField = Right.FSecField)
and (Left.FThirdField = Right.FThirdField);
end;

Hasher :=
function(const Value: TTest): Integer
begin
Result := BobJenkinsHash(Value.FId, SizeOf(Value.FId), 0);
Result := BobJenkinsHash(Value.FSecField, SizeOf(Value.FSecField), Result);
Result := BobJenkinsHash(Value.FThirdField, SizeOf(Value.FThirdField), Result);
end;

关于Delphi TObjectDictionary 具有类实例键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34763133/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com