Go homepage(回首页) Upload pictures (上传图片) Write articles (发文字帖)
The author:(作者)aaapublished in(发表于) 2014/7/19 0:14:21 [delphi语法9]delphi中with语句的使用实例
with语句使用记录类型的变量时,可以通过With 语句指定一些语句,这些都是针对某一个变量来说的,这样可以简化代码的输入量。With 语句的形式如下:with object do statement例如: typeTEmployee=recordName : string[20];YearHired:2000..2010;Salary: Double;Position: string[20];end;varEmployee:TEmployee;beginwith Employee dobeginName :=’Wang’;YearHired :=2005;Salary :=10000;Position := ’ Technic Department’;end;
赞