文件名称:枚举数据类型特点-delphi的入门教程
文件大小:1.34MB
文件格式:PPT
更新时间:2024-05-14 23:26:02
delphi教程
2、枚举数据类型特点 枚举元素只能是标识符 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);