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

0
votes
1answer
28 views

Calling the parenthesis overload given a pointer

I can overload the parenthesis operator using the following signature: char& operator()(const int r, const int c); The intended usage of this would be: // myObj is an object of type MyClass ...
2
votes
1answer
52 views

C# Cannot overload + if second parameter is an enum

I have the following signature for overloaded +: public static double operator +(MyClass x, MyEnum e) and an expression of the form: x.Value = someMyClassValue + MyEnum.X; The behavior ...
1
vote
2answers
45 views

C++11 Adding a stream output operator for std::chrono::time_point

I would like to be able to do the following: std::cerr << std::system_clock::now() << std::endl; And get the following: Wed May 1 11:11:12 2013 So I wrote the following: ...
9
votes
3answers
166 views

Pure virtual operator

I have a project for school in C++ and I am stuck on one part: I have to overload the operators + and * to work with geometrical figures. That was no problem, but here it where it doesn’t work: I ...
0
votes
3answers
86 views

Vector and []-operator overloading

I have inherited my class from std::vector. Now I want to overload the []-operator. When I try to assign a new value to my vector, e.g. v[0]=5, I should receive the message OK. This is my code (I ...
5
votes
5answers
176 views

Why are you expected to override GetHashCode and Equals when overloading the equality operator?

The title pretty much says it all. Failing to override GetHashCode and Equals when overloading the equality operator causes the compiler to produce warnings. Why would it be a good idea to change the ...
5
votes
2answers
174 views

Operator[] Overloading in MultiDimensional Arrays c++

When I call: a7[0][1][100]; I am able to obtain the first index '0' in the operator[] but as index I won't able to obtain other index values 1 and 100 as recursively. How could I able to use ...
2
votes
3answers
50 views

size_t parameter new operator

I have a point in my mind which I can't figure out about new operator overloading. Suppose that, I have a class MyClass yet MyClass.h MyClass.cpp and main.cpp files are like; //MyClass.h class ...
1
vote
1answer
63 views

overloading operator-> for iterator where underlying container doesn't store real objects

I've a diagonal class which serves as principle diagonal. To minimize space I am storing {begin: point, size: int} instead of storing a list of points Now My algorithms will be easy to implement If I ...
2
votes
2answers
41 views

Using normal and overloaded operator at the same time

I have a class and i overloaded [ operator to use in main. But the problem here is; somewhere in the class in another function. i want to use [ operator like the old style. How can i use them both or ...
0
votes
1answer
57 views

Overloading square brackets while inheriting vector class in c++?

i want to inherit a class called arithmeticVector from stl vector class. My problem is with square brackets overaloading. here is the code: template<class type> type& ...
5
votes
1answer
96 views

Determine which copy constructors is called in C++ code

I have written a simple C++ class example with 1 non-param constructor, 1 param constructor, 2 copy constructors, 1 assignment operator and 1 plus operator. class Complex { protected: float real, ...
14
votes
2answers
138 views

Different casting operators used by different compilers

The following C++ program compiles without warnings in all compilers I have tried (gcc 4.6.3, llvm 3.0, icc 13.1.1, SolarisStudio 12.1/12.3): struct CClass { template<class T> operator T() ...
0
votes
1answer
40 views

Comparator - overloading the operator <

I am trying to use the std::set to contain a struct of three member variables. struct blah{ int a,b,c; bool operator < ( const blah& blo ) const{ return ( a < ...
-1
votes
1answer
40 views

istream operator overloading c++

i'm trying to do a simple istream operator overloading, but for some reason, once entering this function, the program enters an infinite loop. please help! my code: #include <iostream> ...
2
votes
3answers
44 views

overloaded operator<< and operator+ causing error

class student { private: int age; public: student(); student(int a) {age = a;} ~student() {}; friend student& operator+ (int left, student& s); friend ...
3
votes
0answers
76 views

Defining var + in Scala, is it useful? [duplicate]

Got into a discussion about the possible identifiers in Scala. It turns out you can define the variable + Can this be useful? I can't seem to do anything with it: felix@felix-UX32VD:~$ scala Welcome ...
0
votes
1answer
25 views

Overload cout results in duplicate definition

I'm trying to overload the << operator on the ostream - class? For some reason I'm overloading it twice, I can't seem to figure out why cause i have #ifndef in my header file. matrix.h ...
0
votes
4answers
61 views

overload operator=, different class as argument

I have a problem with below code, it compiles, yet the output crashes to desktop without giving me any suggestion what i'm doing wrong. I know the problem is within operator= overloading at ...
1
vote
1answer
89 views

Bypass override of operator new in C++

Is there a way to achieve a bypass of an override of operator new? Something like this: void* ::operator new( std::size_t size ) { void *p = ( ::operator new( size ) ); // But original, _not_ ...
0
votes
4answers
47 views

About operator overloading in C++

I have a question about operators, let's say that I have a class myclass and that i have overloaded its operator *=, [], and + Can I access them inside the member functions with this->*=, this->[], ...
1
vote
2answers
66 views

Is there a way to overload operator= to have specific behavior for a function on right hand side

I have a class named Image which I would like a non member function to return into an Image. Image::Image(const char * src); Image::Image& operator= (const Image& p); Image ...
0
votes
2answers
38 views

Pointer to class

I have been trying to write a Fraction class and overload some of its operators (+, -, -, /...). At first, I tried to do it like this: Fraction& operator+(Fraction& rightOp) { Fraction ...
-8
votes
1answer
51 views

A few questions for C++ [closed]

I recently took the CS106B Stanford programming abstractions course independently (using iTunes U). I am about to finish the course and happened to have some unsolved issues/questions. I'll be happy ...
0
votes
1answer
30 views

C++ Eigen: subclassed vector get error in conversion with simple operation

I've subclassed Eigen::Vector2d for have some convenience methods that i don't will write here (like MyVec.randomize(), MyVec.distanceWithThreshold(), etc..). But I'm facing with a error in ...
0
votes
3answers
53 views

overloading operators, what is the purpose of the overladed operator in this example

I have been trying to understand the use of the overloaded operator in this code, however, I cannot wrap my mind around it. I do not understand exactly the purpose of the overloaded operator or why it ...
0
votes
1answer
47 views

C++ operator overload doesnt work

I have a question about operators and how to overload them. There is an example of code and I'm overloading operator<< but it doesn't work. There is class that I use: class CStudent{ //class ...
2
votes
2answers
49 views

C++: use own class in a multiset container

at first I'm new here and English isn't my native language so apologize for any grammatical failures but I find this community really nice so I will try to ask my question as precise as I can. I want ...
0
votes
1answer
51 views

How to change method calling order in python?

My question is about operator overloading in python. I want to set, the 'priority' or 'order' of the method's calling in python, and I'm looking for a pythonic way to do that. Below is a very bizarre ...
1
vote
3answers
110 views

C++ operator for a = b .* c with pointers to a,b, and c objects as input

i have three pointers to three objects: MyClass* a = new MyClass(...); MyClass* b = new MyClass(...); MyClass* c = new MyClass(...); Now i want to specify an operator in MyClass so that I can do: ...
4
votes
2answers
40 views

Multiple system explicit converters are allowed, but mutiple user explicit converters are not. Why?

If I have this code, this will compile and work as it should: class MyNumber // Just a class. { static public explicit operator MyNumber(byte b) { return new MyNumber(); } } ...
0
votes
1answer
49 views

>> Operator overloading function infinite recurse [closed]

I wrote a rational class for my college homework. class Rational { friend std::istream &operator >>(std::istream &, const Rational &); friend std::ostream &operator ...
1
vote
1answer
36 views

operator overloading as a friend

I was trying to write a Complex number class , with overloading of the operator + - * as friend like below: ComplexNumber operator+(const ComplexNumber &c1, const ComplexNumber& c2) { ...
0
votes
1answer
68 views

Greater than and less than together [duplicate]

I would like to overloading operator > in c++ to be possible write codes like this: if(a>x>b)...; I have seen that this operator requires just two arguments. Any idea how to do this? ...
0
votes
5answers
65 views

Operator Overloading (int as bool)

I'm trying to write a code that returns 1s and 0s instead of true or false. But this doesn't seem to be right. int Short_Vector::operator==(const Short_Vector& obj){ if(a == obj.a && ...
0
votes
1answer
18 views

How to use SWIG to wrap a C++ operator[] in a template class inside a namespace?

I'm using SWIG to wrap an existing C++ library using just its header files. This library uses a namespace and a template class to create Arrays of custom objects. I'm running into problems trying to ...
-2
votes
2answers
61 views

Problems overloading operator “=” in template

I have this code from a sequence class from an earlier assignment, and am supposed to convert it into a template with a node class. All of my other functions seem to work fine, but there seems to be ...
8
votes
2answers
293 views

C++ 'overloading' the if() statement

Is it possible to change the behavior of if() so that: class Foo { int x; }; Foo foo; if(foo) only proceeds if the value of x is something other than zero? or... Would an explicit ...
0
votes
2answers
67 views

Assignment Operator for an object

I have written a code, for dynamically allocating a name. I know I should take care of deep copy in such scenarios. What I have written is my own version of Copy Constructor,Copy Assignment Operator ...
0
votes
0answers
17 views

Getting ifstream from istream and calling functions via overloaded >> operator

I've created an object, PDBParser, to extract information from a PDB file. Now I am trying to overload the >> and << operators so that I can use them from the main as so: inFile >> ...
0
votes
2answers
34 views

Having trouble when overloading the '<' operator for a map

I am trying to overload the '<' operator so that i can use the std::map in a project. The prototype in the class definition looks like this: bool operator<(const Vertex&);, and the body of ...
1
vote
3answers
52 views

what is the differences between returning reference or not in operator overloading C++

I've tried to figure out what is the purpose of & on the return type. I mean,consider the code below, what happens if i delete & from the operator overloading function. class Container { ...
0
votes
2answers
32 views

overloading the << and defining a stream manipulator c++

I am hoping someone could offer some insight on a particular problem im having. I am writing a program that takes in integers, stores them in a vector, and prints them out with comma separators for ...
0
votes
0answers
77 views

(SOLVED!) C++ compound overload (i.e. += and -=) has no effect

SOLVED!!! I had to write an extra function update_clock() to make changes to secs, mins, hours, and days. I am encountering a small problem that involves compound assignment, and it has no effect ...
1
vote
1answer
27 views

overloaded stream insertion operator errors, won't compile

I'm trying to overload operator<< for my Graph class but I keep getting various errors: error C4430: missing type specifier - int assumed. Note: C++ does not support default-int error C2143: ...
15
votes
4answers
569 views

How to make multiplication operator (*) behave as short-circuit?

I have lots of computations, specially multiplication, where first part is sometimes zero and I don't want to evaluate second operand in that case. There are at least two short-circuit operators in ...
0
votes
2answers
48 views

*this-> can not be used as a function

Here's an excerpt of a class which I have created inside a header file : typedef double real; class Grid{ public : explicit Grid (); explicit Grid(size_t level ); Grid(const ...
0
votes
2answers
58 views

stream operators where lhs is not a std::iostream instance

I have a custom output class that has two std::ostream members that serve different purposes. Either stream is used depending upon how the output class is configured. In some instances, the two ...
3
votes
1answer
39 views

Calling overloaded operator function from struct pointer

I have the following struct in C++ struct Jam { void operator()() { cout << "Test"; } }; And I am able to call the overloaded function like so: Jam j; j(); But I was ...
0
votes
1answer
43 views

Coexistence among global operator<< and member operator<<

Does anyone know how to make these two overloaded operators coexist? #include<iostream> template< typename T > class A; template< typename T > std::ostream& ...

1 2 3 4 5 47