M mace Unregistered / Unconfirmed GUEST, unregistred user! 2001-09-26 #1 请问如何将枚举类型转换为整型,以及将整型转换为枚举类型,有没有最简单的办 法,如强制类型转换可以做到这一点?
吕 吕雪松 Unregistered / Unconfirmed GUEST, unregistred user! 2001-09-26 #2 就是强类型转换啊,没有问题的。 TYourType = {Point,Line,Polygan} ... var obj : TYourType; begin obj := TYourType(1); ... end;
就是强类型转换啊,没有问题的。 TYourType = {Point,Line,Polygan} ... var obj : TYourType; begin obj := TYourType(1); ... end;