Delphi版本号对照

VER10  :Turbo Pascal 1
VER20  : Turbo Pascal 2
VER30  : Turbo Pascal 3
VER40  : Turbo Pascal 4
VER50  : Turbo Pascal 5
VER60  : Turbo Pascal 6
VER70  : Turbo Pascal 7
VER80  : Delphi 1
VER90  : Delphi 2
VER100 : Delphi 3
VER120 : Delphi 4
VER130 : Delphi 5
VER140 : Delphi 6
VER150 : Delphi 7
VER160 : Delphi 8
VER170 : Delphi 9.0  CodeGear2005
VER180 : Delphi 10.0 CodeGear 2006
VER185 : Delphi 11.0 CodeGear 2007
VER190 : Delphi 12.0 CodeGear 2008
VER200 : Delphi 13.0 CodeGear 2009
VER210 : Delphi 14.0 Embarcadero RAD Studio 2010
VER220 : Delphi 15.0 Embarcadero RAD Studio XE
VER230 : Delphi 16.0 Embarcadero RAD Studio XE2
VER240 : Delphi 17.0 Embarcadero RAD Studio XE3

编译时可以判断版本号:{$IF CompilerVersion >= 18.5}
//some code only compiled for Delphi 2007 and later
{$IFEND}

Delphi XE3  - 24
Delphi XE2  - 23

Delphi XE   - 22
Delphi 2010 - 21
Delphi 2009 - 20
Delphi 2007 - 18.5
Delphi 2006 - 18
Delphi 2005 - 17
Delphi 8    - 16
Delphi 7    - 15
Delphi 6    - 14

Delphi版本号对照,布布扣,bubuko.com

时间: 2024-10-26 11:09:40

Delphi版本号对照的相关文章

[Delphi] Delphi版本号对照

VER10  :Turbo Pascal 1VER20  : Turbo Pascal 2VER30  : Turbo Pascal 3VER40  : Turbo Pascal 4VER50  : Turbo Pascal 5VER60  : Turbo Pascal 6VER70  : Turbo Pascal 7VER80  : Delphi 1VER90  : Delphi 2VER100 : Delphi 3VER120 : Delphi 4VER130 : Delphi 5VER14

最新的Delphi版本号对照

The CompilerVersion constant identifies the internal version number of the Delphi compiler. It is defined in the System unit and may be referenced either in code just as any other constant: if CompilerVersion = 20 then sCompilerName := 'Delphi 2009';

Delphi 版本号(D1到XE6),发现一个delphi.wikia.com网站

Borland Compiler Conditional Defines  Edit  Talk1 2,909PAGES ONTHIS WIKI Product Name Version Conditional Define CompilerVersion Embarcadero RAD Studio XE6 20.0 VER270 27 Embarcadero RAD Studio XE5 19.0 VER260 26 Embarcadero RAD Studio XE4 18.0 VER25

Delphi 2007体验!

Delphi 2007体验! baidu 内容摘要:CodeGear(From Borland) 公司公布了最新的Delphi 2007 For Win32版本号.作为一个 Delphi 的使用者,第一时间下载.安装并进行了体验,现将一些使用感受记录例如以下 CodeGear(From Borland) 公司公布了最新的Delphi 2007 For Win32版本号.作为一个 Delphi 的使用者,第一时间下载.安装并进行了体验,现将一些使用感受记录例如以下: 注:以下的对照主要是针对Del

App上架版本号配置的注意事项:CFBundleVersion与CFBundleShortVersionString设置,以及内部检查版本更新的代码

一.CFBundleVersion与CFBundleShortVersionString设置 CFBundleVersion:标识内部版本号,如果发包错误时可以将错误的撤回及时更改内部版本号即可. CFBundleShortVersionString:代表应用的发布版本号,该版本的版本号是三个时期分隔的整数组成的字符串.第一个整数代表重大修改的版本,如实现新的功能或重大变化的修订.第二个整数表示的修订,实现较突出的特点.第三个整数代表维护版本. 如上图:Version对应的就是CFBundleS

Android CTS測试Fail项改动总结(四)

Android5.1上的測试 1.android.security.cts.SELinuxDomainTest# testInitDomain fail 打印的log junit.framework.AssertionFailedError: Expected 1 process in SELinux domain "u:r:init:s0" Found "[ pid: "1" proctitle: "/init" label: &qu

Semaphore实现Andoird版源代码剖析

Semaphore是一个计数的信号量.从概念上来说,信号量维持一组许可(permits).acquire方法在必须的时候都会堵塞直到有一个许可可用,然后就会拿走这个许可.release方法加入一个许可,会有可能释放一个堵塞中的获取者(acquirer).然而,Semaphore没有使用真实的许可对象,仅仅是保持一个可用计数而且採取对应的行为. 信号量一般用于限制能够訪问一些(物理上或者逻辑上)的资源的并发线程数. 信号量初始化为1的时候,意味着它最多仅仅有一个同意可用,这样就能作为相互排斥独占锁

Delphi or INNO 版本号比较方法 版本差

{替换字符串} function StringReplace(const S, OldPattern, NewPattern: string): string; var SearchStr, Patt, NewStr: string; Offset: Integer; begin SearchStr := S; Patt := OldPattern; NewStr := S; Result := ''; while SearchStr <> '' do begin Offset :=Pos(P

Delphi与C语言类型转换对照

When converting C function prototypes to Pascal equivalent declarations, it's important to substitute the C function and argument types with the correct Pascal types. I often use a Type Translation Table for this, like the following in table 1 (optio