此处所列的文章均是我自己从国外的网站摘抄并翻译的,由于英文水平有限,里面肯定有不少错漏.翻译这些东西没有其他的什么用途,只是提高自己的英语阅读能力和编程技术水平而已     
摘要: function TryEncodeTime(Hour, Min, Sec, MSec: Word; out Time: TDateTime): Boolean;begin Result := False; if (Hour < HoursPerDay) and (Min < MinsPerHour) and (Sec < SecsPerMin) and (MSec < M... 阅读全文
posted @ 2010-11-09 21:42 AppleAndPear 阅读(291) 评论(0) 推荐(0) 编辑
摘要: Delphi BasicsArrayKeywordA data type holding indexable collections of data1 type Name = array[Index type|Ordinal..Ordinal {,...}] of Base type; // Static array 2 type Name = array of {array of ...} Ba... 阅读全文
posted @ 2010-11-09 21:11 AppleAndPear 阅读(219) 评论(0) 推荐(0) 编辑
摘要: About arraysArrays are ordered collections of data of one type. Each data item is called an element, and is accessed by its position (index) in the array. They are very useful for storing lists of dat... 阅读全文
posted @ 2010-11-09 20:52 AppleAndPear 阅读(154) 评论(0) 推荐(0) 编辑