gpt4 book ai didi

delphi - 将枚举类型 var 设置为 nil

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

也许(可能)这是一个愚蠢的问题,但我没有找到答案......

请检查这个假设的代码:

type
TCustomType = (Type1, Type2, Type3);

function CustomTypeToStr(CTp: TCustomType): string;
begin
Result := '';
case CTp of
Type1: Result := 'Type1';
Type2: Result := 'Type2';
Type3: Result := 'Type3';
end;
end;

function StrToCustomType(Str: string): TCustomType;
begin
Result := nil; <--- ERROR (Incompatible types: 'TCustomType' and 'Pointer')
if (Str = 'Type1') then
Result := Type1 else
if (Str = 'Type2') then
Result := Type2 else
if (Str = 'Type3') then
Result := Type3;
end;

请问如何将 nil/null/empty 设置为这个自定义类型 var,以便我可以检查函数结果并避免出现问题?

最佳答案

枚举类型不能是 nil 。它必须采用定义的枚举值之一。

您有几个选择。您可以添加另一个枚举:

type
TCustomType = (NoValue, Type1, Type2, Type3);

您可以使用可为空的类型。例如Spring有Nullable<T>

如果找不到值,您可以引发异常。

function StrToCustomType(Str: string): TCustomType;
begin
if (Str = 'Type1') then
Result := Type1
else if (Str = 'Type2') then
Result := Type2
else if (Str = 'Type3') then
Result := Type3
else
raise EMyException.Create(...);
end;

或者您可以使用 TryXXX模式。

function TryStrToCustomType(Str: string; out Value: TCustomType): Boolean;
begin
Result := True;
if (Str = 'Type1') then
Value := Type1
else if (Str = 'Type2') then
Value := Type2
else if (Str = 'Type3') then
Value := Type3
else
Result := False;
end;

function StrToCustomType(Str: string): TCustomType;
begin
if not TryStrToCustomType(Str, Result) then
raise EMyException.Create(...);
end;

关于delphi - 将枚举类型 var 设置为 nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31421248/

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