Can I overload operators for my own classes in Delphi? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T07:25:14Z http://stackoverflow.com/feeds/question/329359 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/329359/can-i-overload-operators-for-my-own-classes-in-delphi 1 Can I overload operators for my own classes in Delphi? chester89 2008-11-30T21:01:25Z 2009-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#329385 3 Answer by Drejc for Can I overload operators for my own classes in Delphi? Drejc 2008-11-30T21:19:29Z 2008-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#329392 4 Answer by Cesar Romero for Can I overload operators for my own classes in Delphi? Cesar Romero 2008-11-30T21:30:32Z 2008-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#329434 1 Answer by gabr for Can I overload operators for my own classes in Delphi? gabr 2008-11-30T21:51:17Z 2008-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#329753 0 Answer by chester89 for Can I overload operators for my own classes in Delphi? chester89 2008-12-01T01:21:39Z 2008-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#329901 2 Answer by Gerry for Can I overload operators for my own classes in Delphi? Gerry 2008-12-01T02:55:48Z 2008-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#1384477 0 Answer by GrooverMD for Can I overload operators for my own classes in Delphi? GrooverMD 2009-09-05T23:10:13Z 2009-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#1385934 0 Answer by Jeroen Pluimers for Can I overload operators for my own classes in Delphi? Jeroen Pluimers 2009-09-06T15:33:37Z 2009-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 &amp; 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>