自delphi7以后新的delphi语言特性

news/2024/7/4 0:52:54 标签: delphi, 语言, class, integer, methods, properties
class="baidu_pl">
class="article_content clearfix">
class="htmledit_views">
class="abstract">
摘要: See many of the major new language features in Delphi released after the Delphi 7 version

Language and Compiler Features Since Delphi 7

Inlining Routines can now be marked with the inline directive.  This tells the compiler that, instead of actually calling the routine, it should emit code that includes the routine at the call site.
Operator Overloading

Delphi allows certain functions, or operators, to be overloaded within record declarations

class="sourcecode">
TMyClass = class="keyword">class
class="keyword">class operator Add(a, b: TMyClass): TMyClass; class="comment">// Addition of two operands of type TMyClass
class="keyword">class operator Subtract(a, b: TMyClass): TMyclass; class="comment">// Subtraction of type TMyClass
class="keyword">class operator Implicit(a: Integer): TMyClass; class="comment">// Implicit conversion of an Integer to type TMyClass
class="keyword">class operator Implicit(a: TMyClass): Integer; class="comment">// Implicit conversion of TMyClass to Integer
class="keyword">class operator Explicit(a: Double): TMyClass; class="comment">// Explicit conversion of a Double to TMyClass
class="keyword">end;

class="comment">// Example implementation of Add class operator
TMyClass.Add(a, b: TMyClass): TMyClass;
class="keyword">begin
...
class="keyword">end;

class="keyword">var
x, y: TMyClassbegin
x := 12; class="comment">// Implicit conversion from an Integer
y := x + x; class="comment">// Calls TMyClass.Add(a, b: TMyClass): TMyClass
b := b + 100; class="comment">// Calls TMyClass.Add(b, TMyClass.Implicit(100))
class="keyword">end;

Class Helpers

A class helper is a type that - when associated with another class - introduces additional method names and properties which may be used in the context of the associated class (or its descendants). Class helpers are a way to extend a class without using inheritance. A class helper simply introduces a wider scope for the compiler to use when resolving identifiers. When you declare a class helper, you state the helper name, and the name of the class you are going to extend with the helper. You can use the class helper any place where you can legally use the extended class. The compiler's resolution scope then becomes the original class, plus the class helper. Class helpers provide a way to extend a class, but they should not be viewed as a design tool to be used when developing new code. They should be used solely for their intended purpose, which is language and platform RTL binding.

class="sourcecode">class="keyword">type
TMyClass = class="keyword">class

class="keyword">procedure MyProc;
class="keyword">function MyFunc: Integer;
class="keyword">end;

...

class="keyword">procedure TMyClass.MyProc;
class="keyword">var
X: Integer;
class="keyword">begin
X := MyFunc;
class="keyword">end;

class="keyword">function TMyClass.MyFunc: Integer;
class="keyword">begin
...
class="keyword">end;

...

class="keyword">type
TMyClassHelper = class="keyword">class helper class="keyword">for TMyClass
class="keyword">procedure HelloWorld;
class="keyword">function MyFunc: Integer;
class="keyword">end;

...

class="keyword">procedure TMyClassHelper.HelloWorld;
class="keyword">begin
WriteLn(Self.ClassName); class="comment">// Self refers to TMyClass type, not TMyClassHelper

class="keyword">end;

class="keyword">function TMyClassHelper.MyFunc: Integer;
class="keyword">begin
...
class="keyword">end;
...

class="keyword">var
X: TMyClass;
class="keyword">begin
X := TMyClass.Create;
X.MyProc; class="comment">// Calls TMyClass.MyProc
X.HelloWorld; class="comment">// Calls TMyClassHelper.HelloWorld
X.MyFunc; class="comment">// Calls TMyClassHelper.MyFunc

class="keyword">end;
strict privateThe private keyword actually creates a " friendship" relationship between classes in the same unit.  The strict private declaration creates a true private field, not viewable by any other class, not even classes in the same unit.
strict protected Similar to the strict private declaration, strict protectedcreates a true protected member, visible only to the declaring class and its descendents.
Records with Methods

In addition to fields, records now may have properties and methods (including constructors), class properties, class methods, class fields, and nested types. 

class="sourcecode">class="keyword">type
TMyRecord = class="keyword">record
class="keyword">type
TInnerColorType = Integer;
class="keyword">var
Red: Integer;
class="keyword">class class="keyword">var
Blue: Integer;
class="keyword">procedure printRed();
class="keyword">constructor Create(val: Integer);
class="keyword">property RedProperty: TInnerColorType class="keyword">read Red class="keyword">write Red;
class="keyword">class class="keyword">property BlueProp: TInnerColorType class="keyword">read Blue class="keyword">write Blue;
class="keyword">end;

class="keyword">constructor TMyRecord.Create(val: Integer);
class="keyword">begin
Red := val;
class="keyword">end;

class="keyword">procedure TMyRecord.printRed;
class="keyword">begin
writeln(class="quote">'Red: ', Red);
class="keyword">end;
class abstract

Classes, and not just methods, can be declared as abstract.

class="sourcecode">class="keyword">type
TAbstractClass = class="keyword">class class="keyword">abstract
class="keyword">procedure SomeProcedure;
class="keyword">end;
class sealed Classes marked as sealed cannot be inherited from.
class="sourcecode">class="keyword">type
TAbstractClass = class="keyword">class sealed
class="keyword">procedure SomeProcedure;
class="keyword">end;
class const Classes can now have class constants -- a constant value associated with the class itself and not an instance of the class.
class="sourcecode">class="keyword">type
TClassWithConstant = class="keyword">class
class="keyword">public
class="keyword">const SomeConst = class="quote">'This is a class constant';
class="keyword">end;


class="keyword">procedure TForm1.FormCreate(Sender: TObject);
class="keyword">begin
ShowMessage(TClassWithConstant.SomeConst);
class="keyword">end;
class type A class can now contain a type declaration that is usable only within that class.
class="sourcecode">
class="keyword">type
TClassWithClassType = class="keyword">class
class="keyword">private
class="keyword">type
TRecordWithinAClass = class="keyword">record
SomeField: class="keyword">string;
class="keyword">end;
class="keyword">public

class="keyword">class class="keyword">var
RecordWithinAClass: TRecordWithinAClass;
class="keyword">end;
...
class="keyword">procedure TForm1.FormCreate(Sender: TObject);
class="keyword">begin
TClassWithClassType.RecordWithinAClass.SomeField := class="quote">'This is a field of a class type declaration';
ShowMessage(TClassWithClassType.RecordWithinAClass.SomeField);
class="keyword">end;

class var A class can also have a class variable, applicable only to the class and not an instance of the class. See "class type" for an example.
class propertyA class can have a class property, which is a property that applies only to the class reference and not to an instance of a class.  The accessors for the class property must be either class methods or class variables. See the example in "static class methods" below.
nested classes Type declarations can be nested within class declarations. They present a way to keep conceptually related types together, and to avoid name collisions.
class="sourcecode">class="keyword">type
TOuterClass = class="keyword">class
strict class="keyword">private
MyField: Integer;
class="keyword">public
class="keyword">type
TInnerClass = class="keyword">class
class="keyword">public
MyInnerField: Integer;
class="keyword">procedure InnerProc;
class="keyword">end;
class="keyword">procedure OuterProc;
class="keyword">end;

class="keyword">procedure TOuterClass.TInnerClass.InnerProc;
class="keyword">begin
...
class="keyword">end;
final methods A virtual method that you override can now be marked final, preventing derived classes from overriding that method.
class="sourcecode">TAbstractClass = classabstract
class="keyword">public
class="keyword">procedure Bar; class="keyword">virtual;
class="keyword">end;

TSealedClass = classsealed(TAbstractClass)
class="keyword">public
class="keyword">procedure Bar; class="keyword">override;
class="keyword">end;

TFinalMethodClass = class="keyword">class(TAbstractClass)
class="keyword">public
class="keyword">procedure Bar; class="keyword">override; class="keyword">final;
class="keyword">end;
sealed methods Classes marked as sealed cannot be descended from. See the example in 'final methods'.
static class methods Classes can have static class methods -- i.e. methods that can be called from a class type. Class static methods can be accessed without an object reference. Unlike ordinary class methods, class static methods have no Self parameter at all. They also cannot access any instance members. (They still have access to class fields, class properties, and class methods.) Also unlike class methods, class static methods cannot be declared virtual.
class="sourcecode">class="keyword">type
TMyClass = class="keyword">class
strict class="keyword">private
class="keyword">class class="keyword">var
FX: Integer;
strict class="keyword">protected

class="comment">// Note: accessors for class properties must be declared class static.

class="keyword">class class="keyword">function GetX: Integer; class="keyword">static;
class="keyword">class class="keyword">procedure SetX(val: Integer); class="keyword">static;
class="keyword">public
class="keyword">class class="keyword">property X: Integer class="keyword">read GetX class="keyword">write SetX;
class="keyword">class class="keyword">procedure StatProc(s: class="keyword">String); class="keyword">static;
class="keyword">end;

TMyClass.X := 17;
TMyClass.StatProc(class="quote">'Hello');
for-in loop Delphi 2007 for Win32 supports for-element-in-collection style iteration over containers. The following container iteration patterns are recognized by the compiler:
class="sourcecode">  class="keyword">for Element class="keyword">in ArrayExpr class="keyword">do Stmt;
class="keyword">for Element class="keyword">in StringExpr class="keyword">do Stmt;
class="keyword">for Element class="keyword">in SetExpr class="keyword">do Stmt;
class="keyword">for Element class="keyword">in CollectionExpr class="keyword">do Stmt;
 

http://www.niftyadmin.cn/n/1414183.html

相关文章

java中复制对象通过反射或序列化

在使用缓存读取数据后修改发现缓存被修改。于是找了下复制对象的方法。 关于对象克隆 按我的理解,对象是包含引用数据。通常变量复制都是将引用传递过去。比如: 1 Person p1 new Person(); 2 Person p2 p1; 这两句话,创建两个引用p1&#x…

TensorRT开发踩坑笔记

bindding 数据类型部一致 某个输出的数据类型是int, 忽略了,一直当作是float解析,导致错误。 虽然int 和 float 占用内存大小是一样的,但是解析方式错误,导致最终的错误,看来对每个bingding做输入输出校验&#xff0c…

UVALive - 4126 Password Suspects (AC自动机+状压dp)

给你m个字符串,让你构造一个字符串,包含所有的m个子串,问有多少种构造方法。如果答案不超过42,则按字典序输出所有可行解。 由于m很小,所以可以考虑状压。 首先对全部m个子串构造出AC自动机,每个节点有一个…

如何查看TensorRT默认支持的算子(operator)

TensorRT7.0支持的ONNX算子列表 https://github.com/onnx/onnx-tensorrt/blob/84b5be1d6fc03564f2c0dba85a2ee75bad242c2e/oper ators.md OperatorSupported?RestrictionsAbsYAcosYAcoshYAddYAndYArgMaxYArgMinYAsinYAsinhYAtanYAtanhYAveragePoolY2D or 3D Pooling onlyBa…

sql: update from

sql server提供了update的from 子句,可以将要更新的表与其它的数据源连接起来。虽然只能对一个表进行更新,但是通过将要更新的表与其它的数据源连接起来,就可以在update的表达式 中引用要更新的表以外的其它数据. 实际更新的操作是在要更新的…

Ruby系列学习资料(一)

值得记忆的是一个新编程语言有时被看作万能药,特别是它的追随者;但是, 没有一个语言能代替所有其他的语言, 没有一个工具对每个任务都是最好的。在世界上有许多不同的问题领域,并且这些领域内有许多可能的限制是可能的…

使用Zxing实现扫二维码描

1.集成Zxing.bar 2.复制代码到项目中 3.修改 MipacActivityCapture.java 的扫描结果方法 handleDecode() /*** 处理扫描结果,实现活动页面跳转* param result* param barcode*/public void handleDecode(Result result, Bitmap barcode) {in…

Tensorrt 自定义插件的调用顺序及过程

一个自定义插件需要实现两个类,分别继承于 class MyPluginDynamic : public IPluginV2DynamicEx class MyPluginDynamicCreator : public IPluginCreator 然后使用 REGISTER_TENSORRT_PLUGIN(MyPluginDynamicCreator); 看其详细定义,也就是将这个插…