Delphi 枚举数据类型特性

枚举元素仅为标识符。

例:

type days = (sun, mon, tue, wed, thu, fri, sat);

colors = (red, yellow, blue, white, black, green);

var Week: days;

FormColor: colors;

type colortype = ('red', 'yellow', 'blue', 'white');

numbers = (1, 3, 5, 7, 9);

ppt 文件大小:1.34MB