Delphi XE
文章平均质量分 64
busintel
这个作者很懒,什么都没留下…
展开
-
Delphi Spring
今天发现了一个delhpi的Spring框架,而且这家还是易博龙的合作伙伴。 因为要出去上班,所以先直接粘到这,有时间时候再译,是官方wiki上的。 Architecture¶ 系统架构The Delphi Spring Framework consists of the following libraries: Spring.Base Provides the fundamental classes for the framework. Some翻译 2010-08-29 08:39:00 · 1820 阅读 · 0 评论 -
Delphi 泛型集合的排序实例
(译自Delphi2009 Handbook)TList的Sort方法:procedure Sort; overload;procedure Sort(const AComparer: IComparer); overload;其中的IComparer接口是在Generics.Defaults单元定义的。如果你调用第一个版本默认的方法,它由TList使用默认构造器初始化的,针对我们的情况它是不可用的。翻译 2010-08-30 23:24:00 · 4566 阅读 · 0 评论 -
Delphi泛型结合接口的应用 (译自Delphi2009 Handbook)
通过接受一个限定的参数,这个参数是实现某个接口的类,比较起直接接受泛型,而限制这个泛型的类要更加灵活。也就是通常所说的面向接口式的编程。这样可以达到调用实现了这个接口的各种泛型的实例。这种对泛型实用接口约束的应用,在.net框架中有很广泛的应用。下面是一个实例(命名为IntfConstraint)。 首先,需要声明一个接口:typeIGetValue = interface['{60700EC4-2CDA-4CD1-A1A2-07973D9D2444}'翻译 2010-08-28 11:17:00 · 1935 阅读 · 0 评论 -
Delphi2011 产品线
Delphi2011 包括Delphi XE,C++ Builder XE, Delphi Prism XE,RAD PHP四大系列开发工具。其中Delphi 和C++ Buider由来已久,并为大家熟知的,从2009开始,全面支持国际化、原创 2010-08-29 16:24:00 · 825 阅读 · 0 评论 -
RAD Studio Code Examples ---- Delphi C++ Delphi# 代码实例
易博龙官方的:http://docwiki.embarcadero.com/CodeSamples/en/Main_Page Delphi Code ExamplesC++ Code Examples2010 and XE-compatible ExamplesNew for XE Exampleshttp://delphi-prism-samples.fyxm.net/Delphi Prism Samples (Delphi#.net)原创 2010-08-29 18:51:00 · 726 阅读 · 0 评论 -
delphi革命联合促进会 --- JEDI Teams
Joint Endeavour of Delphi Innovators -- JEDI 是Delphi 创意革新开发者的联盟,全球delphi 高手的代码库。在其组织管理下有如下的项目组: 团队联系人 主页 下载 JEDI API Library Oliver Schneider http://jedi-apilib.sourceforge.net点这里 JEDI JCL Florent Ouchet http://jcl.sourceforge.net/点这原创 2010-10-23 12:10:00 · 2371 阅读 · 2 评论 -
Delphi 匿名函数的几个实际应用(一)
包含如下的六个部分:Anonymous Event Handlers 匿名事件处理器Timing Anonymous Methods 计时功能匿名方法Thread Synchronization with the VCL VCL线程同步Parallel For Loop 并行循环AJAX in Delphi Delphi AJAXDebating the AJAX Demo AJAX应用的辩论匿名事件处理器Since the early days, one of the distinguishi翻译 2010-10-28 20:19:00 · 5267 阅读 · 0 评论 -
Delphi 的一个加密和压缩组件 (用于DataSnap多层程序中)
DSFC -- DataSanp过滤和压缩系列,由九个过滤器组成,是为Delphi2010版定制的。过滤器分下面三组:HASH¶MD5 MD4 SHA1 SHA512 CIPHER¶Blowfish Rijndael 3TDES 3DES COMPRESS¶LZO HASH filters¶ 哈希过滤器The HASH filters helps avoid to any spiteful person to modify datasnap message through an “Man in the m翻译 2010-11-04 12:57:00 · 3416 阅读 · 3 评论 -
Delphi 匿名函数的几个实际应用(二)
Timing Anonymous Methods 计时功能匿名函数开发者们经常需要添加计时代码到一个已有的常规过程中,比较他们的相关速度。前面例子已经使用了几次实例,指出Uncode字符执行速度。对比两个代码片段,比较他们的执行毫秒数,妳可以写出下面内容(在本书第二章的“转换字符”例子):procedure TFormAnonTiming.btnClassicClick(Sender: TObject);varstr1: string;str2: AnsiString;I: Intege原创 2010-11-04 21:06:00 · 2413 阅读 · 0 评论