<p>Am 11.05.2015 16:49 schrieb "misu kun" <<a href="mailto:misu.dev@gmail.com">misu.dev@gmail.com</a>>:<br>
><br>
> thanks<br>
> in objfpc mode i can imagine this ,but it didn't work unless i specialize (obj)<br>
><br>
><br>
> type<br>
> generic obj<T> = object<br>
> x : T;<br>
> end;<br>
> operator + (arg1 ,arg2 : obj):obj; // error : here (obj) needs specialization<br>
> begin<br>
> result.x := arg1.x + arg2.x;<br>
> end;</p>
<p>The method needs to be part of the object (you should use "record" though) like in the mode-Delphi-code, for this you need to add {$modeswitch advancedrecords} after the {$mode objfpc} directive.</p>
<p>Regards,<br>
Sven</p>