473,672 Members | 2,819 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

non-overridable operators...

Hello,

I have a c# class that holds a large matrix of data.
I overrode the standard +, - operators but I also need to override the +=
and -= operators in order to avoid making a copy of the entire matrix.
The code below should explain...

From what I can tell, the ECMA spec does not allow for overriding of A+=B
and expands it to A=A+B
This is a huge waste of memory for my app.
Instead, I have to force the user of the class to use A.Add(B) .

Is there anything I can do or am I stuck?

How do I go about requesting this ability for the next version of the
language?

Also, Is there a way of adding custom operators to the language or is the
list of operators set in stone?

I would also love to see an overrideable Min/Max operator.
Sometimes, Math.Min doesn't cut it.

<code>
public class Matrix {

// this is what I'd like to do...
public static void operator += (Matrix A,Matrix B) { A.Add(B); }

// but this is what I have to do
public static Matrix operator + (Matrix A, Matrix B) { return
Matrix.Add(A,B) ; }

public static Matrix Add (Matrix A, Matrix B) {
Matrix retval=new Matrix(A) // <--- I want to avoid having to
reallocate a new matrix
retval.Add(B);
return retval;
}

public void Add(Matrix B) { ... add code here }
}
</code>

I could change the code above to always use the A matrix but then expresions
like C=A+B would be misleading since A would also change.

Thanks in advance,

Oscar
Nov 13 '05 #1
4 3968
Oscar Papel <oe*****@rogers .com> wrote:

<snip>
I could change the code above to always use the A matrix but then expresions
like C=A+B would be misleading since A would also change.


But that would also be the case if you had += doing what you want. Take
this example:

Matrix original = ...;

Matrix a = original;
Matrix b = original;

a+=b; // a should now just be twice b, right?

Nope - now a, b and original have *all* changed.

I would be very, very wary of *any* class where a+=b wasn't
semantically equivalent to a=a+b, if it were possible in C#.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet/
If replying to the group, please do not mail me too
Nov 13 '05 #2

"Jon Skeet" <sk***@pobox.co m> wrote in message
news:MP******** *************** *@news.microsof t.com...
Oscar Papel <oe*****@rogers .com> wrote:

<snip>
I could change the code above to always use the A matrix but then expresions like C=A+B would be misleading since A would also change.


But that would also be the case if you had += doing what you want. Take
this example:

Matrix original = ...;

Matrix a = original;
Matrix b = original;

a+=b; // a should now just be twice b, right?

Nope - now a, b and original have *all* changed.


This would be true if Matrix was a class but not if it was a struct.
Then, A=original and B=original would do a Copy() instead of a reference
copy and then A+=B would be semantically equivalent to A=A+B but there would
be no need to allocate a temporary matrix in order to do the operation.
Your example is a classic example of why "value" types are needed in C#
I never said that I wanted the semantic meaning to change, I merely said I
wanted to perform the operation more efficiently.

Also, A+=ScalarValue shouldn't need to allocate a new copy of A but it does.

C#'s GC only adds to the problem.

Oscar.
Nov 13 '05 #3
Oscar Papel <oe*****@rogers .com> wrote:
But that would also be the case if you had += doing what you want. Take
this example:

<snip>
This would be true if Matrix was a class but not if it was a struct.
Then, A=original and B=original would do a Copy() instead of a reference
copy and then A+=B would be semantically equivalent to A=A+B but there would
be no need to allocate a temporary matrix in order to do the operation.
Yes, that's true.
Your example is a classic example of why "value" types are needed in C#
I never said that I wanted the semantic meaning to change, I merely said I
wanted to perform the operation more efficiently.
Except that your example was a class, so the semantics *would* have
changed...
Also, A+=ScalarValue shouldn't need to allocate a new copy of A but it does.
Only in the same way - you could make Add(Matrix, int) change the
passed in matrix, it just wouldn't be a terribly nice thing to do.
C#'s GC only adds to the problem.


GC is a CLR concept, not particularly a C# one. However, I don't see
how it has much to do with this problem at all.

Overall I'd stick with using method names - it's likely to be clearer
to maintain, IMO.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet/
If replying to the group, please do not mail me too
Nov 13 '05 #4

"Jon Skeet" <sk***@pobox.co m> wrote in message
news:MP******** *************** *@news.microsof t.com...
Also, A+=ScalarValue shouldn't need to allocate a new copy of A but it
does.
Only in the same way - you could make Add(Matrix, int) change the
passed in matrix, it just wouldn't be a terribly nice thing to do.
Well surely you can't object to

struct /* or class */ Matrix
{
...
public void Add(float f); // Adds f to "this"
}

Overall I'd stick with using method names - it's likely to be clearer
to maintain, IMO.
I agree-- especially as some languages don't allow operator overloading
anyway so you are recommended to publish methods that accomplish the same
purpose.

Incidentally a Matrix class is a good candidate for having generics where
the parameters are not types. For example in C++:

template<int rows, int columns> class Matrix
{
...
};

produces a unique type for each matrix of differet
--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet/
If replying to the group, please do not mail me too

Nov 13 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
3743
by: klaus triendl | last post by:
hi, recently i discovered a memory leak in our code; after some investigation i could reduce it to the following problem: return objects of functions are handled as temporary objects, hence their dtor is called immediately and not at the end of the function. to be able to use return objects (to avoid copying) i often assign them to a const reference. now, casting a const return object from a function to a non-const reference to this...
3
12233
by: Mario | last post by:
Hello, I couldn't find a solution to the following problem (tried google and dejanews), maybe I'm using the wrong keywords? Is there a way to open a file (a linux fifo pipe actually) in nonblocking mode in c++? I did something ugly like --- c/c++ mixture --- mkfifo( "testpipe", 777);
25
7611
by: Yves Glodt | last post by:
Hello, if I do this: for row in sqlsth: ________pkcolumns.append(row.strip()) ________etc without a prior:
32
4509
by: Adrian Herscu | last post by:
Hi all, In which circumstances it is appropriate to declare methods as non-virtual? Thanx, Adrian.
8
3501
by: Bern McCarty | last post by:
Is it at all possible to leverage mixed-mode assemblies from AppDomains other than the default AppDomain? Is there any means at all of doing this? Mixed-mode is incredibly convenient, but if I cannot load/unload/reload extensions into my large and slow-to-load application during development without restarting the process then the disadvantages may outweigh the advantages. I've got a mixed-mode program in which I create a new AppDomain...
14
8428
by: Patrick Kowalzick | last post by:
Dear all, I have an existing piece of code with a struct with some PODs. struct A { int x; int y; };
11
3423
by: ypjofficial | last post by:
Hello All, So far I have been reading that in case of a polymorphic class ( having at least one virtual function in it), the virtual function call get resolved at run time and during that the vtable pointer is made use of.. eg. class one {
2
6108
by: Ian825 | last post by:
I need help writing a function for a program that is based upon the various operations of a matrix and I keep getting a "non-aggregate type" error. My guess is that I need to dereference my pointers, but I'm not sure. Please help. The code: void equate(matrix *A, matrix *B) { int i, j; assert(A.row_dim == B.col_dim && A.col_dim == B.col_dim); for(i=0; i < A.row_dim; i++) for(j=0; j < A.col_dim; j++)
399
12795
by: =?UTF-8?B?Ik1hcnRpbiB2LiBMw7Z3aXMi?= | last post by:
PEP 1 specifies that PEP authors need to collect feedback from the community. As the author of PEP 3131, I'd like to encourage comments to the PEP included below, either here (comp.lang.python), or to python-3000@python.org In summary, this PEP proposes to allow non-ASCII letters as identifiers in Python. If the PEP is accepted, the following identifiers would also become valid as class, function, or variable names: Löffelstiel,...
12
29862
by: puzzlecracker | last post by:
is it even possible or/and there is a better alternative to accept input in a nonblocking manner?
0
8945
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8846
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8643
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8697
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
4242
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4439
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2837
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2093
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1837
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.