digitalmars.D.learn - Operator Overloading + / ~
- Martin Tschierschke (9/9) Jun 19 2017 Just a thought it might be useful for cut-n-paste when porting
- ketmar (3/10) Jun 19 2017 nope. it is not possible to overload operators for built-in types (and
- Martin Tschierschke (2/16) Jun 19 2017 Thank you for lightning fast response :-)
- Steven Schveighoffer (9/19) Jun 19 2017 Just a further note, there is a reason + is not concatenation for arrays...
Just a thought it might be useful for cut-n-paste when porting code: Would it be possible to define an operator overloading for '+'-Operator for strings to work as append? (like ~). I understand, that '~' is in general a better choice than '+', so this is of more theoretical interest. It is clear to me, that when I define my own string type this is possible. Regards mt.
Jun 19 2017
Martin Tschierschke wrote:Just a thought it might be useful for cut-n-paste when porting code: Would it be possible to define an operator overloading for '+'-Operator for strings to work as append? (like ~). I understand, that '~' is in general a better choice than '+', so this is of more theoretical interest. It is clear to me, that when I define my own string type this is possible. Regards mt.nope. it is not possible to overload operators for built-in types (and string is just an aliased array).
Jun 19 2017
On Monday, 19 June 2017 at 12:22:43 UTC, ketmar wrote:Martin Tschierschke wrote:Thank you for lightning fast response :-)Just a thought it might be useful for cut-n-paste when porting code: Would it be possible to define an operator overloading for '+'-Operator for strings to work as append? (like ~). I understand, that '~' is in general a better choice than '+', so this is of more theoretical interest. It is clear to me, that when I define my own string type this is possible. Regards mt.nope. it is not possible to overload operators for built-in types (and string is just an aliased array).
Jun 19 2017
On 6/19/17 8:16 AM, Martin Tschierschke wrote:Just a thought it might be useful for cut-n-paste when porting code: Would it be possible to define an operator overloading for '+'-Operator for strings to work as append? (like ~). I understand, that '~' is in general a better choice than '+', so this is of more theoretical interest. It is clear to me, that when I define my own string type this is possible. Regards mt.Just a further note, there is a reason + is not concatenation for arrays. does "1" + "1" = "2", or "11"? In some languages, both are possible outcomes, and which one is used depends on subtle differences in the context. With a specific operator to mean concatenation, the intent is clear. I would recommend you stick to using ~ for concatenation, even for your own types. -Steve
Jun 19 2017