19
votes
13answers
1k 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 whe …
13
votes
3answers
494 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 cl …
13
votes
19answers
7k 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 r …
12
votes
3answers
680 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 …
12
votes
2answers
2k 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 …
11
votes
6answers
959 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 initializ …
9
votes
1answer
1k 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). …
9
votes
8answers
915 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 solut …
8
votes
7answers
3k 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- …
7
votes
4answers
142 views
Can smart pointers selectively hide or re-direct function calls to the objects they are wrapping?
I'm working on a project where certain objects are referenced counted -- it's a very similar setup to COM. Anyway, our project does have smart pointers that alleviate the need to …
7
votes
4answers
1k views
virtual assignment operator C++
Assignment Operator in C++ can be made virtual. Why is it required? Can we make other operators virtual too?
7
votes
6answers
760 views
std::copy to std::cout for std::pair
I have next code:
#include <iostream>
#include <algorithm>
#include <map>
#include <iterator>
//namespace std
//{
std::ostream& operator << ( s …
7
votes
5answers
1k 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, …
7
votes
2answers
919 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 …
7
votes
4answers
336 views
How do I prevent a class from being allocated via the ‘new’ operator? (I’d like to ensure my RAII class is always allocated on the stack.)
I'd like to ensure my RAII class is always allocated on the stack.
How do I prevent a class from being allocated via the 'new' operator?
