在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
使用Delphi编写游戏,唯一没有C++方便的就是不支持运算符重载。当你编写有关向量或者矩阵计算的程序时,不支持运算符重载的Delphi使用起来是很费劲的。 注意:只有Delphi 2006 和 免费版的 Turbo Delphi 支持这一功能! Delphi for Win32 只支持 record 类型的运算符重载,而 Delphi .NET 还支持 class 类型的运算符重载 Explicit 转换 Explicit(a: type): resultType; 显式转换 负 一元运算 Negative(a: type): resultType; - 正 一元运算 Positive(a: type): resultType; + 递增 一元运算 Inc(a: type): resultType; Inc 递减 一元运算 Dec(a: type): resultType; Dec 逻辑非 一元运算 LogicalNot(a: type): resultType; not 按位非 一元运算 BitwiseNot(a: type): resultType; not 截取 一元运算 Trunc(a: type): resultType; Trunc 舍入 一元运算 Round(a: type): resultType; Round 等于 比较 Equal(a: type; b: type) : Boolean; = 不等于 比较 NotEqual(a: type; b: type): Boolean; <> 大于 比较 GreaterThan(a: type; b: type) Boolean; > 大于等于 比较 GreaterThanOrEqual(a: type; b: type): resultType;>= 小于 比较 LessThan(a: type; b: type): resultType; < 小于等于 比较 LessThanOrEqual(a: type; b: type): resultType; <= 加 二元运算 Add(a: type; b: type): resultType; + 减 二元运算 Subtract(a: type; b: type): resultType; - 乘 二元运算 Multiply(a: type; b: type): resultType; * 除 二元运算 Divide(a: type; b: type): resultType; / 整除 二元运算 IntDivide(a: type; b: type): resultType; div 模 二元运算 Modulus(a: type; b: type): resultType; mod 左移 二元运算 ShiftLeft(a: type; b: type): resultType; shl 右移 二元运算 ShiftRight(a: type; b: type): resultType; shr 逻辑与 二元运算 LogicalAnd(a: type; b: type): resultType; and 逻辑或 二元运算 LogicalOr(a: type; b: type): resultType; or 逻辑异或 二元运算 LogicalXor(a: type; b: type): resultType; xor 按位与 二元运算 BitwiseAnd(a: type; b: type): resultType; and 按位或 二元运算 BitwiseOr(a: type; b: type): resultType; or 按位异或 二元运算 BitwiseXor(a: type; b: type): resultType; xor 在具体介绍如何使用运算符重载前,我先说说Delphi里record的新功能。
还是看看具体的例子吧 :) //具体的实现 constructor TVector.Create(x1, y1, z1: Single); class operator TVector.Add(V1, V2: TVector): TVector; class operator TVector.Implicit(i: Single): TVector; class operator TVector.Implicit(i: TVector): TVector; //调用方法 v2 := v1 + v2; //调用了class operator Add(V1, V2 : TVector): TVector; v2 := v2 + 1; // class operator Add(V1, V2 : TVector): TVector end; Delphi的这种实现方式显然比C++要方便,因为你不用考虑内存释放;也可以不用定义构造函数。 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论