摘要: 开发数组,参数用const限定词,Slice为取部分长度的数组成员。也可以直接用 [] 的方式传参 代码如下: unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphi... 阅读全文
posted @ 2015-10-25 01:58 GOD攀 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 动态数组支持直接相加,方法如下: 代码如下: unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, V... 阅读全文
posted @ 2015-10-25 01:35 GOD攀 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 动态数组直接 := 赋值给新数组,那么这2个数组还是同一个数组,修改任意一个数组成员值,另外一个数组也跟随着变化。 如果动态数组用Copy赋值,那么则不会跟着随动变化 代码如下: unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Varia... 阅读全文
posted @ 2015-10-25 01:29 GOD攀 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 静态数组赋值方法如下: 代码如下: unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl... 阅读全文
posted @ 2015-10-25 01:09 GOD攀 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 定义函数构型,然后在再调用函数 代码如下: unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vc... 阅读全文
posted @ 2015-10-25 00:49 GOD攀 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 很好用的一个计时类,用于计算某个功能耗时的毫秒数量 unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, ... 阅读全文
posted @ 2015-10-25 00:14 GOD攀 阅读(225) 评论(0) 推荐(0) 编辑