1
vote
3answers
110 views
Overloading operator >
Hello,
In my homework, I have to design a class Message; among other attributes, it has attribute "priority" (main goal is to implement priority queue).
As in container I must c …
1
vote
1answer
53 views
Can’t get operator overloading to work with Linq Expression Trees
I am creating Linq expression trees from F# that operates on a custom datatype I have. The type is a very simple discriminated union that has the usual arithmetic operators overloa …
0
votes
5answers
121 views
Operator overloading in Java
Please can you tell me if it is possible to overload operators in Java? If it is used anywhere in Java could you please tell me about it.
0
votes
5answers
66 views
Overloading the + operator to add two arrays
What's wrong with this C# code? I tried to overload the + operator to add two arrays, but got an error message as follows:
One of the parameters of a binary operator must be the c …
0
votes
2answers
75 views
What’s the right way to overload operator== for a class hierarchy?
Suppose I have the following class hierarchy:
class A
{
int foo;
virtual ~A() = 0;
};
A::~A() {}
class B : public A
{
int bar;
};
class C : public A
{
int baz;
…
6
votes
6answers
141 views
C# in operator-overloading
Hi,
I just had an idea last nigth when writing an if-expression
and sometimes the expression tend to be long when you have it like this:
if(x == 1 || x == 2 || x == 33 || x == 4 …
2
votes
3answers
53 views
In the msdn guidance on Equals override, why the cast to object in the null check?
I was just looking at the Guidelines for Overloading Equals() on msdn (see code below); most of it is clear to me, but there is one line I don't get.
if ((System.Object)p == null) …
2
votes
4answers
78 views
Is this a good/efficient idiom for implementing Equals and equality/inequality operators?
I have had a few problems getting this right, so I wanted to ask if anyone has any feedback on whether this is an efficient way to implement the Equals method and equality/inequali …
0
votes
2answers
79 views
Why does not C# support operator overloading with pass by reference?
Is this a CLR restriction or a language design decision? I tried to do it in C++/CLI, of course where it works because the need to support native c++:
public ref class Test
{
…
0
votes
5answers
47 views
Overriding instance variable array’s operators in Ruby
Sorry for the poor title, I don't really know what to call this.
I have something like this in Ruby:
class Test
def initialize
@my_array = []
end
attr_accessor :my_arra …
2
votes
5answers
175 views
Should I Overload == Operator?
How does the == operator really function in C#? If it used to compare objects of class A, will it try to match all of A's properties, or will it look for pointers to the same memor …
2
votes
4answers
87 views
Overloading Arithmetic Operators in JavaScript?
This is the best way I can think of phrasing this question, given this JavaScript "class" definition:
var Quota = function(hours, minutes, seconds){
if (arguments.length === 3 …
1
vote
3answers
72 views
Ambiguous overload on template operators
I am working on two wrapper classes that define real and complex data types. Each class defines overloaded constructors, as well as the four arithmetic operators +,-,*,/ and five a …
5
votes
6answers
181 views
C++ operator overloading and implicit conversion
Hi, everyone!
I have a class that encapsulates some arithmetic, let's say fixed point calculations. I like the idea of overloading arithmetic operators, so I write the following:
…
1
vote
3answers
143 views
Overload bracket access and assignment C++
I'm writing a hash table for my data structs class, and I'd like to add a little syntactic sugar to my implementation.
template <typename HashedObj, typename Object>
Object …
