Tagged Questions

Operator overloading is a feature of a programming language that allows custom implementations for operators depending on the types of the operands involved. Some languages allow new operators to be defined while others only allow redefinition of existing ones.

learn more… | top users | synonyms

120
votes
5answers
13k views

Operator overloading

What are the basic rules and idioms for operator overloading in C++? Note: The answers were given in a specific order, but since many users sort answers according to votes, rather than the time they ...
81
votes
15answers
8k views

What makes Scala's operator overloading “good”, but C++'s “bad”?

Operator overloading in C++ is considered by many to be A Bad Thing(tm), and a mistake not to be repeated in newer languages. Certainly, it was one feature specifically dropped when designing Java. ...
70
votes
7answers
7k views

How can I reliably get the address of an object?

Consider the following program: struct ghost { // ghosts like to pretend that they don't exist ghost* operator&() const volatile { return 0; } }; int main() { ghost clyde; ghost* ...
64
votes
4answers
2k views

Pretty-print C++ STL containers

Please take note of the updates at the end of this post. Update: I have created a public project on GitHub for this library! I would like to have a single template that once and for all takes care ...
64
votes
20answers
41k views

Java operator overload

Coming from C++ to Java, the obvious unanswered question is why not operator overload. On the web some go about: "it's clearly obfuscated and complicate maintenance" but no one really elaborates ...
54
votes
3answers
8k views

Operator Overloading with C# Extension Methods

I'm attempting to use extension methods to add an operater overload to the C# StringBuilder class. Specifically, given StringBuilder sb, I'd like sb += "text" to become equivalent to ...
42
votes
7answers
17k views

How do I overload the square-bracket operator in C#?

DataGridView, for example, lets you do this: DataGridView dgv = ...; DataGridViewCell cell = dgv[1,5]; but for the life of me I can't find the documentation on the index/square-bracket operator. ...
38
votes
2answers
7k views

Operator Overloading with Interface-Based Programming in C#

Background I am using interface-based programming on a current project and have run into a problem when overloading operators (specifically the Equality and Inequality operators). Assumptions ...
32
votes
6answers
6k views

Why should one replace default new and delete operators?

Why should one replace the default operator new and delete with a custom new and delete operators? This is in continuation of Overloading new and delete in the immensely illuminating C++ FAQ: ...
28
votes
9answers
2k views

C# operator overload for “+=”?

I am trying to do operator overloads for "+=", but I can't. I can only make an operator overload for "+". How come? Edit The reason this is not working is that I have a Vector class (with an X and ...
28
votes
6answers
7k views

overloading __init__ in python

Let's say I have a class that has a member called data which is a list. I want to be able to initialize the class with, for example, a filename (which contains data to initialize the list) or with ...
26
votes
8answers
1k views

Is this use of the “,” operator considered bad form?

I have made a list class as a means of replacing variadic functions in my program used for initializing objects that need to contain a changing list of elements. The list class has a usage syntax that ...
24
votes
5answers
793 views

Why does '7' + 4 give '74', whereas '7' - 4 gives 3 in javascript?

I read this question in some post on SO, so please explain this. Thanking you.
23
votes
3answers
294 views

Is it allowed to name the parameter in postfix operator ++?

I am not using this code in any production environment, it is just for my understanding. Is this code valid (i.e. can I define my postfix operator like this?): class A { public: A& ...
22
votes
3answers
2k views

__lt__ instead of __cmp__

Python 2.x has two ways to overload comparison operators, __cmp__ or the "rich comparison operators" such as __lt__. The rich comparison overloads are said to be preferred, but why is this so? Rich ...
22
votes
3answers
12k views

How to properly overload the << operator for an ostream?

I am writing a small matrix library in C++ for matrix operations. However my compiler complaints, where before it did not. This code was left on a shelf for 6 months and in between I upgraded my ...
20
votes
3answers
3k views

Why can't you overload the '.' operator in C++?

It would be very useful to be able to overload the . operator in C++ and return a reference to an object. You can overload operator-> and operator* but not operator. Is there a technical reason ...
19
votes
2answers
266 views

What legitimate reasons exist to overload the unary operator&?

Okay, I've been inspired to do some head punching. Seems like overloading operator& leads to not a small amount of pain. What legitimate cases exist for overloading it? (Can't say I've ever done ...
18
votes
4answers
565 views

How should I write ISO C++ Standard conformant custom new and delete operators?

How should I write ISO C++ standard conformant custom new and delete operators? This is in continuation of Overloading new and delete in the immensely illuminating C++ FAQ, Operator overloading, and ...
18
votes
5answers
595 views

Why is T() = T() allowed?

I believe the expression T() creates an rvalue (by the Standard). However, the following code compiles (at least on gcc4.0): class T {}; int main() { T() = T(); } I know technically this is ...
18
votes
4answers
826 views

Possible to override null-coalescing operator?

Is it possible to override the null-coalescing operator for a class in C#? Say for example I want to return a default value if an instance is null and return the instance if it's not. The code ...
17
votes
1answer
326 views

Is there a way to overload the regex binding operator `=~` in Perl?

I am working on a small DSL that uses the nomethod fallback for overloading to capture the operators used on the overloaded values. This is similar to the function of the symbolic calculator ...
17
votes
3answers
2k views

operator new overloading and alignment

I'm overloading operator new, but I recently hit a problem with alignment. Basically, I have a class IBase which provides operator new and delete in all required variants. All classes derive from ...
17
votes
4answers
6k views

How do I overload the [] operator in C#

I would like to add an operator to a class. I currently have a GetValue() method that I would like to replace with an [] operator. class A { private List<int> values = new ...
17
votes
6answers
6k views

Should operator<< be implemented as a friend or as a member function?

That's basically the question, is there a "right" way to implemente operator<< ? Reading this I can see that something like: friend bool operator<<(obj const& lhs, obj const& ...
16
votes
6answers
754 views

Method overloads resolution and Jon Skeet's Brain Teasers

Jon's Brain Teasers Here Be Spoilers... I'm looking at the answer to #1, and I must admit I never knew this was the case in overload resolution. But why is this the case. In my tiny mind ...
16
votes
3answers
709 views

What is ->* operator in C++?

C++ continues to surprise me. Today i found out about the ->* operator. It is overloadable but i have no idea how to invoke it. I manage to overload it in my class but i have no clue how to call it. ...
15
votes
3answers
348 views

Why are there no lifted short-circuiting operators on `bool?`?

Why doesn't bool? support lifted && and ||? They could have lifted the true and false operators which would have indirectly added lifted && and ||. The operators | and & are ...
15
votes
6answers
813 views

Why is this ambiguity here?

Consider I have the following minimal code: #include <boost/type_traits.hpp> template<typename ptr_t> struct TData { typedef typename boost::remove_extent<ptr_t>::type ...
15
votes
3answers
2k views

Override 'in' operator in Python

If I am creating my own class in Python, what function should I define so as to allow the use of the 'in' operator, e.g. class MyClass(object): ... m = MyClass() if 54 in m: ...
15
votes
4answers
11k views

virtual assignment operator C++

Assignment Operator in C++ can be made virtual. Why is it required? Can we make other operators virtual too?
14
votes
4answers
242 views

can custom C++ classes replicate the performance of inbuilt types?

I am trying to create a C++ class that behaves exactly like the inbuilt int type with one exception: everywhere that operator* (or operator*=) is called, addition is called instead. At first, the ...
14
votes
2answers
285 views

Rationale of enforcing some operators to be members

There are 4 operators in C++ which can be overloaded but cannot be overloaded as freestanding (aka nonmember, standalone) functions. These operators are: operator = operator () operator -> ...
14
votes
3answers
417 views

What does this C++ syntax mean and why does it work?

I was looking through the source of OpenDE and I came across some wierd syntax usage of the array indexing operator '[]' on a class. Here's a simplified example to show the syntax: #include ...
14
votes
4answers
655 views

How to reduce redundant code when adding new c++0x rvalue reference operator overloads

I am adding new operator overloads to take advantage of c++0x rvalue references, and I feel like I'm producing a lot of redundant code. I have a class, tree, that holds a tree of algebraic operations ...
14
votes
3answers
4k views

Solution for overloaded operator constraint in .NET generics

What would I do if I want to have a generic method that only accepts types that have overloaded an operator, for instance the subtraction operator. I tried using an interface as a constraint but ...
12
votes
1answer
212 views

Does overloading the comma operator *really* affect the order of evaluation of its operands?

The comma operator guarantees left-to-right evaluation order. [n3290: 5.18/1]: The comma operator groups left-to-right. expression: assignment-expression expression , assignment-expression ...
12
votes
5answers
404 views

Why not overload operator+=() for std::vector?

I've started learning C++, so I don't know in my lack of knowledge/experience why something so seemingly simple to a rookie as what I'm about to describe isn't already in the STL. To add a vector to ...
12
votes
3answers
251 views

delegating into private parts

Sometimes, C++'s notion of privacy just baffles me :-) class Foo { struct Bar; Bar* p; public: Bar* operator->() const { return p; } }; struct Foo::Bar { void ...
12
votes
5answers
257 views

Why can operator-> be overloaded manually?

Wouldn't it make sense if p->m was just syntactic sugar for (*p).m? Essentially, every operator-> that I have ever written could have been implemented as follows: Foo::Foo* operator->() { ...
12
votes
3answers
534 views

Are free operator->* overloads evil?

I was perusing section 13.5 after refuting the notion that built-in operators do not participate in overload resolution, and noticed that there is no section on operator->*. It is just a generic ...
11
votes
6answers
300 views

Operator= overloading in C++

In the book C++ Primer it has a code for C - style character arrays, and shows how to overload the = operator in the Article 15.3 Operator =. String& String::operator=( const char *sobj ) { // ...
11
votes
1answer
220 views

Why is “operator void” not invoked with cast syntax?

While playing with this answer by user GMan I crafted the following snippet (compiled with Visual C++ 9): class Class { public: operator void() {} }; Class object; static_cast<void>( ...
11
votes
4answers
3k views

How would you overload the [] operator in javascript

I can't seem to find the way to overload the [] operator in javascript. Anyone out there know? I was thinking on the lines of ... MyClass.operator.lookup(index) { return myArray[index]; } or ...
11
votes
5answers
7k views

Operator Overloading in PHP

Is it possible to overload operators in PHP? Specifically I would like to create an Array class and would like to overload the [] operator.
11
votes
8answers
2k views

Declare a TDateTime as a Const in Delphi

As far as I know there is no way to do this, but I am going to ask just in case someone else knows how to do this. How can I declare a date as a const in Delphi? The only solution I have found is ...
11
votes
6answers
10k views

Is there a workaround for overloading the assignment operator in C#?

Unlike C++, in C# you can't overload the assignment operator. I'm doing a custom Number class for arithmetic operations with very large numbers and I want it to have the look-and-feel of the ...
10
votes
3answers
127 views

Implicit method group conversion gotcha (Part 2)

Simplified from this question and got rid of possible affect from LinqPad(no offsensive), a simple console application like this: public class Program { static void M() { } static void ...
10
votes
2answers
122 views

Under what circumstances would a type's conversion operator to itself be invoked?

Consider a type bar which has user-defined conversion operators to references of type bar: struct bar { operator bar & (); operator const bar & () const; }; When would these conversions ...
10
votes
2answers
151 views

Why can't GCC disambiguate multiple inherited functions (yet clang can)? [closed]

Possible Duplicate: Why do multiple-inherited functions with same name but different signatures not get treated as overloaded functions? This fails to compile in the indicated place with ...

1 2 3 4 5 26