鉴于下面的声明,有没有办法从字符串值(例如'one')中检索枚举值(例如jt_one)?
type
TJOBTYPEENUM =(jt_one, jt_two, jt_three);
CONST JOBTYPEStrings : ARRAY [jt_one..jt_three] OF STRING =
('one','two','three');
还是我需要使用一组嵌套的 if 语句创建自己的函数?
注意:我不是在寻找字符串“jt_one”
鉴于下面的声明,有没有办法从字符串值(例如'one')中检索枚举值(例如jt_one)?
type
TJOBTYPEENUM =(jt_one, jt_two, jt_three);
CONST JOBTYPEStrings : ARRAY [jt_one..jt_three] OF STRING =
('one','two','three');
还是我需要使用一组嵌套的 if 语句创建自己的函数?
注意:我不是在寻找字符串“jt_one”
function EnumFromString(const str: string): TJOBTYPEENUM;
begin
for Result := low(Result) to high(Result) do
if JOBTYPEStrings[Result]=str then
exit;
raise Exception.CreateFmt('Enum %s not found', [str]);
end;
在实际代码中,您希望使用自己的异常类。如果您想允许不区分大小写的匹配,请使用SameText
.
function GetJobType(const S: string): TJOBTYPEENUM;
var
i: integer;
begin
for i := ord(low(TJOBTYPEENUM)) to ord(high(TJOBTYPEENUM)) do
if JOBTYPEStrings[TJOBTYPEENUM(i)] = S then
Exit(TJOBTYPEENUM(i));
raise Exception.CreateFmt('Invalid job type: %s', [S]);
end;
或者,更整洁,
function GetJobType(const S: string): TJOBTYPEENUM;
var
i: TJOBTYPEENUM;
begin
for i := low(TJOBTYPEENUM) to high(TJOBTYPEENUM) do
if JOBTYPEStrings[i] = S then
Exit(i);
raise Exception.CreateFmt('Invalid job type: %s', [S]);
end;