Can I overload operators for my own classes in Delphi? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T07:25:14Zhttp://stackoverflow.com/feeds/question/329359http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/329359/can-i-overload-operators-for-my-own-classes-in-delphi1Can I overload operators for my own classes in Delphi?chester892008-11-30T21:01:25Z2009-09-06T15:33:37Z
<p>I faced a little trouble - I do not know if I can define my own operators for my classes.
For example:<br></p>
<pre><code>type
TMinMatrix = class(TMatrix)
private
RowAmount: Byte;
ColAmount: Byte;
Data: DataMatrix;
DemVector, SupVector: SupplyDemand;
public
constructor Create(Rows, Cols: Byte);
function GetRowAmount: Byte; override;
function GetColAmount: Byte; override;
destructor Destroy;
end;
</code></pre>
<p>How can I - or can`t I:) - do something like:</p>
<pre><code>TMinMatrix TMinMatrix::operator=(TMinMatrix* matr) (c++ code)
</code></pre>
<p>And, by the way, can I define copy constructor for my class?</p>
http://stackoverflow.com/questions/329359/can-i-overload-operators-for-my-own-classes-in-delphi/329385#3293853Answer by Drejc for Can I overload operators for my own classes in Delphi?Drejc2008-11-30T21:19:29Z2008-11-30T21:19:29Z<p>Operator overloading is possible in Delphi .NET versions, older versions of Delphi don't support it.</p>
http://stackoverflow.com/questions/329359/can-i-overload-operators-for-my-own-classes-in-delphi/329392#3293924Answer by Cesar Romero for Can I overload operators for my own classes in Delphi?Cesar Romero2008-11-30T21:30:32Z2008-11-30T21:30:32Z<p>Delphi Win32 2007 and 2009 only supports class operator overload for records, you can have implicit and explicit operators.
Delphi .Net supports class operators for records and classes.</p>
http://stackoverflow.com/questions/329359/can-i-overload-operators-for-my-own-classes-in-delphi/329434#3294341Answer by gabr for Can I overload operators for my own classes in Delphi?gabr2008-11-30T21:51:17Z2008-11-30T21:51:17Z<p>Whatever Drejc and Cesar said + Delphi Win32 2007 and 2009 don't support copy constructors as far as I know (I'm 100% for D2007, not totally sure for D2009).</p>
http://stackoverflow.com/questions/329359/can-i-overload-operators-for-my-own-classes-in-delphi/329753#3297530Answer by chester89 for Can I overload operators for my own classes in Delphi?chester892008-12-01T01:21:39Z2008-12-01T23:16:16Z<p>I suppose copy constructor is an idiom, not a language feature.<br>
So I can do it like this:<br>
constructor CreateCopy(var t: MyType);<br></p>
<p>constructor MyType.CreateCopy(var t: MyType);<br>
begin<br>
//...<br>
end;<br></p>
http://stackoverflow.com/questions/329359/can-i-overload-operators-for-my-own-classes-in-delphi/329901#3299012Answer by Gerry for Can I overload operators for my own classes in Delphi?Gerry2008-12-01T02:55:48Z2008-12-01T02:55:48Z<p>The "traditional" method of copying classes in Delphi is by overriding the "AssignTo" method of TPersistant. This usually takes the form of </p>
<pre><code>TSubclass(Dest).Field1 := Field1;
TSubclass(Dest).Field2 := Field2;
</code></pre>
<p>Which is a bit of a pain.</p>
<p>a CreateCopy constructor would then call this method:</p>
<pre><code>constructor CreateCopy(ASource : TMyClass);
begin
Create;
Assign(ASource); // calls AssignTo
end;
</code></pre>
<p>another trick in later (works in 2006) versions of Delphi is to use an record type to store the fields. </p>
<pre><code>class TMyClass = class(TPersistent)
protected
type // 2005+ only, otherwise use standalone record
TMyRecord = record
Name : string;
ID : integer;
end;
FData : TMyRecord;
procedure AssignTo(Dest : TPersistent);override;
public
property Name : string read FData.Name;
property ID: Integer read FData.ID;
end;
procedure TMyClass.AssignTo(Dest : TPersistent);
begin
if Dest is TMyClass then
TMyClass(Dest).FData := FData
else
inherited; // raise EConvertError
end;
</code></pre>
<p>This gets messy if you keep adding fields in sub-classes - need to add new record types, but it automatically handles new fields added into TMyrecord (don't have to remember to update AssignTo())</p>
http://stackoverflow.com/questions/329359/can-i-overload-operators-for-my-own-classes-in-delphi/1384477#13844770Answer by GrooverMD for Can I overload operators for my own classes in Delphi?GrooverMD2009-09-05T23:10:13Z2009-09-06T04:39:43Z<pre><code>type
TMinMatrix = class(TMatrix)
public
A : integer;
class operator Add( ATM, BTM : TMinMatrix ) : TMinMatrix;
// CTM := ATM + BTM
class operator Subtract( ATM, BTM : TMinMatrix ) : TMinMatrix;
// CTM := ATM - BTM;
end;
class operator TMinMatrix.Add( ATM, BTM : TMinMatrix ) : TMinMatrix;
begin
result := ATM.A + BTM.A;
end;
class operator TMinMatrix.Subtract( ATM, BTM : TMinMatrix ) : TMinMatrix;
begin
result := ATM.A - BTM.A;
end;
var
A, B, C : TMinMatrix;
begin
C := A + B; // calls Add()
C := B - A; // calls Subtract()
end.
</code></pre>
<p>Other operators are:</p>
<pre>
Add Binary Add(a: type; b: type): resultType; +
Subtract Binary Subtract(a: type; b: type) : resultType; -
Multiply Binary Multiply(a: type; b: type) : resultType; *
Divide Binary Divide(a: type; b: type) : resultType; /
IntDivide Binary IntDivide(a: type; b: type): resultType; div
Modulus Binary Modulus(a: type; b: type): resultType; mod
LeftShift Binary LeftShift(a: type; b: type): resultType; shl
RightShift Binary RightShift(a: type; b: type): resultType; shr
LogicalAnd Binary LogicalAnd(a: type; b: type): resultType; and
LogicalOr Binary LogicalOr(a: type; b: type): resultType; or
LogicalXor Binary LogicalXor(a: type; b: type): resultType; xor
BitwiseAnd Binary BitwiseAnd(a: type; b: type): resultType; and
BitwiseOr Binary BitwiseOr(a: type; b: type): resultType; or
BitwiseXor Binary BitwiseXor(a: type; b: type): resultType; xor
</pre>
<p>;)</p>
http://stackoverflow.com/questions/329359/can-i-overload-operators-for-my-own-classes-in-delphi/1385934#13859340Answer by Jeroen Pluimers for Can I overload operators for my own classes in Delphi?Jeroen Pluimers2009-09-06T15:33:37Z2009-09-06T15:33:37Z<p>Operator overloading in Delphi Win32 works only for records, not for classes.</p>
<p>It works from Delphi 2006 and up, but there were some bugs fixed in Delphi 2007 that make them easier to work with (having to do with calling functions on operator results).</p>
<p>I gave a session on Record Operator Overloading on CodeRage 3; You can get the slides and sample code at <a href="http://cc.embarcadero.com/Item/26326" rel="nofollow">26326 CR3: Nullable Types w/ Records, Methods & Operator Overloading</a>, and/or watch the video replay at <a href="http://cc.codegear.com/Download.aspx?id=26416" rel="nofollow">DOWNLOAD VIDEO REPLAY</a>.</p>
<p>This was the session abstract:</p>
<blockquote>
<p>Nullable Types with Records, Methods
and Operator Overloading One of the
things where data from databases and
Delphi native types differ, is the
support for NULL. When you work with
databases a lot in Delphi, you want to
have a datatype that supports NULL. In
the past you had to use variants, but
not any more! With the introduction of
operator overloading, you can do this
with record types, too. This session
shows you how.</p>
</blockquote>
<p>The reason operator overloading is only possible for records in Delphi Win32 (i.e. non .NET), is that records are value types, so their memory management is non-dynamic. Classes are reference types, hence require dynamic memory allocation: they require the concept of a garbage collector in order for operators to work on them. </p>
<p>Since there is no concept of a garbage collector in Delphi Win32, it is not possible in to have operators for classes in Delphi Win32.</p>
<p>Note that <a href="http://conferences.embarcadero.com/coderage" rel="nofollow">CodeRage 4</a> starts next week. It has a nice line up of speakers and sessions.</p>