上一页 1 ··· 106 107 108 109 110 111 112 113 114 ··· 215 下一页
摘要: 最近要写个小程序, 用到 mp3 播放; 因为需要非常复杂的控制与功能, 想到了 Bass.dll. 以前我曾以为 Bass.dll 是 Windows 系统自带的库, 后来才知道原来是第三方的: http://www.un4seen.com/. Bass.dll 一直在更新, 现在最新版本是 2.411, 下载地址: http://us2.un4seen.com/files/bass24.zip... 阅读全文
posted @ 2008-08-17 20:42 万一 阅读(15772) 评论(8) 推荐(0) 编辑
摘要: 在 Delphi 2009 中, TStrings 类(包括 TStringList 和包含 TStrings 属性的所有组件, 譬如 Memo.lines 属性、ListBox.Items 属性)、 TStream 类系列(包括 TFileStream、TMemoryStream 等) 的存取方法, 譬如: LoadFromFile、SaveToFile、LoadFromStream、Save... 阅读全文
posted @ 2008-08-17 01:13 万一 阅读(14283) 评论(12) 推荐(0) 编辑
摘要: 在 Delphi 2009 中: string = UnicodeString; (同样: PString = PUnicodeString;) Char = WideChar; (同样: PChar = PWideChar;) 本例效果图: 代码文件: unit Unit1; interface uses Windows, Messages, SysUtils, Varia... 阅读全文
posted @ 2008-08-16 23:53 万一 阅读(11790) 评论(13) 推荐(0) 编辑
摘要: 问题来源: http://www.cnblogs.com/del/archive/2008/08/16/1268786.html#1289015 本例在 Delphi 2007 和 Delphi 2009 中均调试通过, 运行效果图: 代码文件: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Cl... 阅读全文
posted @ 2008-08-16 19:24 万一 阅读(3393) 评论(6) 推荐(0) 编辑
摘要: ObjAuto 单元应该算是对 TypInfo 单元的功能扩展吧? 它提供了 5 个方法: GetMethods、GetMethodInfo、CreateMethodPointer、ReleaseMethodPointer、ObjectInvoke 通过 GetMethods、GetMethodInfo 可以获取类公用成员的详细信息. 通过 TypInfo 只能获取 published 区中成员... 阅读全文
posted @ 2008-08-16 14:28 万一 阅读(7992) 评论(1) 推荐(1) 编辑
摘要: 已经有了: TList、TQueue、TStack、TDictionary 为什么还有: TObjectList、TObjectQueue、TObjectStack、TObjectDictionary ? 还记得 Classes.TList 和 Contnrs.TObjectList 的主要区别吗? 如果元素是对象, Contnrs.TObjectList 在删除元素时会同时释放对象, 而 Cl... 阅读全文
posted @ 2008-08-16 12:07 万一 阅读(8955) 评论(8) 推荐(0) 编辑
摘要: TDictionary 类似哈希表. 本例效果图: 代码文件: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Memo... 阅读全文
posted @ 2008-08-15 22:40 万一 阅读(14696) 评论(22) 推荐(1) 编辑
摘要: TQueue 和 TStack, 一个是队列列表, 一个是堆栈列表; 一个是先进先出, 一个是先进后出. TStack 主要有三个方法、一个属性: Push(压栈)、Pop(出栈)、Peek(查看下一个要出栈的元素); Count(元素总数). 本例效果图: 代码文件: unit Unit1; interface uses Windows, Messages, SysUtils,... 阅读全文
posted @ 2008-08-15 22:20 万一 阅读(5499) 评论(3) 推荐(0) 编辑
摘要: TQueue 和 TStack, 一个是队列列表, 一个是堆栈列表; 一个是先进先出, 一个是先进后出. TQueue 主要有三个方法、一个属性: Enqueue(入列)、Dequeue(出列)、Peek(查看下一个要出列的元素); Count(元素总数). 本例效果图: 代码文件: unit Unit1; interface uses Windows, Messages, Sy... 阅读全文
posted @ 2008-08-15 22:15 万一 阅读(8798) 评论(2) 推荐(0) 编辑
摘要: Delphi 2009 新增了泛型容器单元: Generics.Collections, 同时还有一个 Generics.Defaults 单元做支持. Generics.Collections 包含了以下实用类: TList TQueue TStack TDictionary TObjectList TObjectQueue TObjectStack TObjectDictionary 有... 阅读全文
posted @ 2008-08-15 16:16 万一 阅读(17072) 评论(16) 推荐(0) 编辑
上一页 1 ··· 106 107 108 109 110 111 112 113 114 ··· 215 下一页