Search Results

2
votes

Can I overload operators for my own classes in Delphi?

The "traditional" method of copying classes in Delphi is by overriding the "AssignTo" method of TPersistant. This usually takes the form of TSubclass(Dest).Field1 := Field1; TSubcl …
0
votes

Is Inheriting nested classes possible?

The example you are giving is using a nested class, not inheriting it. Nested classed can be inherited in subclasses of the declaring class: TSubParent = class(TParent) prot …