4

我想将现有字符串转换为枚举(而不是将其作为枚举读入)。我怎样才能做到这一点?

4

1 回答 1

8

例子:

-- type declaration
type Hands is (Left, Right);

-- code body
Hand : Hands;
Hand := Hands'Value("Left"); -- yields `Left`
于 2012-10-11T01:04:51.610 回答