active questions tagged operator-overloading - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T00:03:11Z http://stackoverflow.com/feeds/tag/operator-overloading http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1810753/overloading-operator 0 Overloading operator<< peterJk 2009-11-27T21:57:32Z 2009-11-27T23:00:05Z <p>Hello! I'm trying to implement a method for a binary tree which returns a stream. I want to use the stream returned in a method to show the tree in the screen or to save the tree in a file:</p> <p>These two methods are in the class of the binary tree:</p> <p>Declarations:</p> <pre><code>void streamIND(ostream&amp;,const BinaryTree&lt;T&gt;*); friend ostream&amp; operator&lt;&lt;(ostream&amp;,const BinaryTree&lt;T&gt;&amp;); template &lt;class T&gt; ostream&amp; operator&lt;&lt;(ostream&amp; os,const BinaryTree&lt;T&gt;&amp; tree) { streamIND(os,tree.root); return os; } template &lt;class T&gt; void streamIND(ostream&amp; os,Node&lt;T&gt; *nb) { if (!nb) return; if (nb-&gt;getLeft()) streamIND(nb-&gt;getLeft()); os &lt;&lt; nb-&gt;getValue() &lt;&lt; " "; if (nb-&gt;getRight()) streamIND(nb-&gt;getRight()); } </code></pre> <p>This method is in UsingTree class:</p> <pre><code>void UsingTree::saveToFile(char* file = "table") { ofstream f; f.open(file,ios::out); f &lt;&lt; tree; f.close(); } </code></pre> <p>So I overloaded the operator "&lt;&lt;" of the BinaryTree class to use: cout &lt;&lt; tree and ofstream f &lt;&lt; tree, but I receive the next error message: undefined reference to `operator&lt;&lt;(std::basic_ostream >&amp;, BinaryTree&amp;)'</p> <p>P.S. The tree stores Word objects (a string with an int).</p> <p>I hope you understand my poor English. Thank you! And I'd like to know a good text for beginners about STL which explains all necessary because i waste all my time in errors like this.</p> <p>EDIT: tree in saveToFile() is declared: BinaryTree&lt; Word > tree.</p> http://stackoverflow.com/questions/1804755/overload-template-relational-operators 0 Overload template relational operators ritual 2009-11-26T16:53:18Z 2009-11-26T20:24:19Z <p>I'm having a problem with a template ARRAY class. I have another Rational class that i added to this ARRAY class. what i need it to do is take in rational numbers as fractions (exp 1/2) and sort them. i believe i need to overload the relational operators but thats where im stuck. do i over load them in the ARRAY class or the Rational Class. below is my code</p> <pre><code>//generic.cpp using namespace std; template&lt;class T&gt; void Quicksort (T&amp; a, int first, int last); template&lt;class T&gt; int split (T&amp; a, int first, int last); template&lt;class T&gt; void change (T&amp; e1, T&amp; e2); template&lt;class T&gt; void Mergesort(T&amp; a, int first, int last); template&lt;class T&gt; void Merge(T&amp; a, int first, int last); int main() { int num; Rational r1; cout &lt;&lt; "\nHow many rationals? "; cin &gt;&gt; num; Array&lt;Rational&gt; r2(num); cout &lt;&lt; "Enter the " &lt;&lt; num &lt;&lt; " rationals below:\n"; for (int i=0; i&lt;num ; i++) cin &gt;&gt; r2[i]; cout &lt;&lt; "\nThank you!!\n"; cout &lt;&lt; "Initially, the rationals are\n" &lt;&lt; " r2 = " &lt;&lt; r2 &lt;&lt; "\n"; // Copy the original array and sort it using Quicksort Array&lt;Rational&gt; r3(r2); Quicksort(r3, 0, num-1); cout &lt;&lt; "\nElements sorted using quicksort:\n"; for (int i=0; i&lt;num ; i++) cout &lt;&lt; r3[i]&lt;&lt; " "; cout &lt;&lt; "\n"; // Print original list of elements. cout &lt;&lt; "\nOriginal elements:\n"; for (int i=0; i&lt;num ; i++) cout &lt;&lt; r2[i]&lt;&lt; " "; cout &lt;&lt; "\n"; // Copy original array and sort it using MergeSort Array&lt;Rational&gt; r4(r2); Mergesort(cm, 0, num-1); cout &lt;&lt; "\nElements sorted using mergesort:\n"; for (int i=0; i&lt;num ; i++) cout &lt;&lt; r4[i]&lt;&lt; " "; cout &lt;&lt; "\n"; return 0; } template&lt;class T&gt; int split (T&amp; a, int first, int last) { T::value_type pivot = a[first]; int left = first; int right = last; while (left&lt;right) { while (pivot &lt; a[right]) //search from right for &lt;=pivot right--; while (left&lt;right &amp;&amp;(a[left]&lt;pivot || a[left]==pivot)) left++; if (left&lt;right) change(a[left],a[right]); } int pivotPosition = right; a[first] = a[pivotPosition]; a[pivotPosition] = pivot; return pivotPosition; } template&lt;class T&gt; void Quicksort (T&amp; a, int first, int last) { int pos; if (first &lt; last) { pos=split(a,first,last); Quicksort(a,first,pos); //sort lsft sublist Quicksort(a,pos+1,last); //sort right sublist } } template&lt;class T&gt; void change (T&amp; e1, T&amp; e2) { T tmp = e1; e1 = e2; e2 = tmp; } template&lt;class T&gt; void Mergesort(T&amp; a, int first, int last) { if (first &lt; last) { int mid = (first + last) / 2; Mergesort(a, first, mid); Mergesort(a, mid+1, last); Merge(a, first, last); } } template&lt;class T&gt; void Merge(T&amp; a, int first, int last) { int mid = (first + last) / 2; int one = 0, two = first, three = mid + 1; Array&lt;T::value_type&gt; temp(a.get_size()); while (two &lt;= mid &amp;&amp; three &lt;= last) // Neither sublist is done if (a[two] &lt; a[three]) // Value in first half is smaller temp[one++] = a[two++]; else // Value in second half is smaller temp[one++] = a[three++]; while (two &lt;= mid) // Finish copying first half temp[one++] = a[two++]; while (three &lt;= last) // Finish copying second half temp[one++] = a[three++]; for (one = 0, two = first; two &lt;= last; a[two++] = temp[one++]); } </code></pre> <p>.</p> <pre><code>//ARRAY.h using namespace std; template&lt;class T&gt; class Array { public: typedef T value_type; Array(int s); Array(int l, int h); Array(const Array&amp; other); ~Array(); T&amp; operator[](int index); const T&amp; operator[](int index) const; int get_size() const {return arraySize;} private: int low; int high; int arraySize; //size of array int offset; //to adjust back to an index of zero T *array_; void Copy(const Array&amp;); }; </code></pre> <p>.</p> <pre><code>//rational.cpp using namespace std; Rational::Rational() { num = 0; den = 1; } Rational::Rational(int n, int d) { if (d==0){ cout &lt;&lt; "Error: division by zero." &lt;&lt; endl; exit(1); } num = n; den = d; simplify(); } Rational&amp; Rational::operator+=(const Rational&amp; r) { num = (num * r.den) + (den * r.num); den = den * r.den; simplify(); return *this; } Rational&amp; Rational::operator-=(const Rational&amp; r) { num = (num * r.den) - (den * r.num); den = den * r.den; simplify(); return *this; } Rational&amp; Rational::operator*=(const Rational&amp; r) { num *= r.num; den *= r.den; simplify(); return *this; } Rational&amp; Rational::operator/=(const Rational&amp; r) { if (r.num == 0) { cout &lt;&lt; "Error: division by zero." &lt;&lt; endl; exit(1); } num *= r.den; den *= r.num; simplify(); return *this; } const Rational&amp; Rational::operator= (const Rational&amp; rightObj) { if (this != &amp;rightObj) { num = rightObj.num; den = rightObj.den; } return *this; } const Rational Rational::operator-() const { Rational answer(-num, den); return answer; } const Rational operator+(const Rational&amp; q, const Rational&amp; r) { Rational answer = q ; answer += r ; return answer; } const Rational operator-(const Rational&amp; q, const Rational&amp; r) { Rational answer = q ; answer -= r ; return answer; } const Rational operator*(const Rational&amp; q, const Rational&amp; r) { Rational answer = q ; answer *= r ; return answer; } const Rational operator/(const Rational&amp; q, const Rational&amp; r) { Rational answer = q ; answer /= r ; return answer; } istream&amp; operator&gt;&gt;(istream&amp; in, Rational&amp; r) { char ch; in &gt;&gt; r.num &gt;&gt; ch &gt;&gt; r.den; r.simplify(); return in; } ostream&amp; operator&lt;&lt;(ostream&amp; out, const Rational&amp; r) { if (r.den == 1) { out &lt;&lt; r.num; }else { out &lt;&lt; r.num &lt;&lt; "/" &lt;&lt; r.den; } return out; } </code></pre> <p>.</p> <pre><code>//rational.h using namespace std; class Rational { friend ostream&amp; operator&lt;&lt; (ostream&amp;, const Rational&amp;); friend istream&amp; operator&gt;&gt; (istream&amp;, Rational&amp;); public: Rational(); Rational(int, int); double value() const; Rational reciprocal() const; Rational&amp; operator+=(const Rational&amp;); Rational&amp; operator-=(const Rational&amp;); Rational&amp; operator*=(const Rational&amp;); Rational&amp; operator/=(const Rational&amp;); const Rational&amp; operator= (const Rational&amp;); const Rational operator-() const; private: int num; int den; void simplify(); }; const Rational operator+(const Rational&amp;, const Rational&amp;); const Rational operator-(const Rational&amp;, const Rational&amp;); const Rational operator*(const Rational&amp;, const Rational&amp;); const Rational operator/(const Rational&amp;, const Rational&amp;); </code></pre> http://stackoverflow.com/questions/1779685/what-is-operator-in-c 13 What is ->* operator in C++? acidzombie24 2009-11-22T19:22:31Z 2009-11-22T22:06:19Z <p>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.</p> <pre><code>struct B { int a; }; struct A { typedef int (A::*a_func)(void); B *p; int a,b,c; A() { a=0; } A(int bb) { b=b; c=b; } int operator + (int a) { return 2; } int operator -&gt;* (a_func a) { return 99; } int operator -&gt;* (int a) { return 94; } int operator * (int a) { return 2; } B* operator -&gt; () { return p; } int ff() { return 4; } }; void main() { A a; A*p = &amp;a; a + 2; } </code></pre> <p>edit:</p> <p>Thanks to the answer. To call the overloaded function i write</p> <pre><code>void main() { A a; A*p = &amp;a; a + 2; a-&gt;a; A::a_func f = &amp;A::ff; (&amp;a-&gt;*f)(); (a-&gt;*f); //this } </code></pre> http://stackoverflow.com/questions/1776636/c-overloading-operator-in-template 0 C++ overloading operator= in template icarus127 2009-11-21T20:15:30Z 2009-11-21T21:12:19Z <p>Hi all I'm having trouble with C++ template operator=</p> <p>What I'm trying to do: I'm working on a graph algorithm project using cuda and we have several different formats for benchmarking graphs. Also, I'm not entirely sure what type we'll end up using for the individual elements of a graph.<br> My goal is to have a templated graph class and a number of other classes, each of which will know how to load a particular format. Everything seems to work alright except the point where the graphCreator class returns a graph type from the generate function. Here is my code:</p> <p>Graph opertator=:</p> <pre><code> MatrixGraph&lt;T&gt;&amp; operator=(MatrixGraph&lt;T&gt;&amp; rhs) { width = rhs.width; height = rhs.height; pGraph = rhs.pGraph; pitch = rhs.pitch; sizeOfGraph = rhs.sizeOfGraph; rhs.Reset(); } </code></pre> <p>the rhs.reset() call removes all references to allocated memory so they will not be deallocated by rhs. Only one graph is allowed to have a reference to the allocated graph memory.</p> <p>Graph copy constructor:</p> <pre><code> MatrixGraph(MatrixGraph&lt;T&gt;&amp; graph) { (*this) = graph; } </code></pre> <p>Graph Creator load function:</p> <pre><code>MatrixGraph&lt;T&gt; LoadDIMACSGraphFile(std::istream&amp; dimacsFile) { char inputType; std::string input; GetNumberOfNodesAndEdges(dimacsFile, nodes, edges); MatrixGraph&lt;T&gt; myNewMatrixGraph(nodes); while(dimacsFile &gt;&gt; inputType) { switch(inputType) { case 'e': int w,v; dimacsFile &gt;&gt; w &gt;&gt; v; myNewMatrixGraph[w - 1][v - 1] = 1; myNewMatrixGraph[v - 1][w - 1] = 1; break; default: std::getline(dimacsFile, input); break; } } return myNewMatrixGraph; } </code></pre> <p>And finally in main.cpp where I'm trying to unit test this I use it:</p> <pre><code>DIMACSGraphCreator&lt;short&gt; creator; myGraph = creator.LoadDIMACSGraphFile(instream); </code></pre> <p>When I try to compile I get this error:</p> <pre><code>main.cpp: In function 'int main(int, char**)': main.cpp:31: error: no match for 'operator=' in 'myGraph = DIMACSGraphCreator&lt;T&gt;::LoadDIMACSGraphFile(std::istream&amp;) [with T = short int](((std::istream&amp;)(&amp; instream.std::basic_ifstream&lt;char, std::char_traits&lt;char&gt; &gt;::&lt;anonymous&gt;)))' MatrixGraph.h:103: note: candidates are: MatrixGraph&lt;T&gt;&amp; MatrixGraph&lt;T&gt;::operator=(MatrixGraph&lt;T&gt;&amp;) [with T = short int] make: *** [matrixTest] Error 1 </code></pre> http://stackoverflow.com/questions/1766492/c-overloading-operator-versus-equals 1 C# overloading operator== versus Equals() JS Bangs 2009-11-19T21:00:12Z 2009-11-19T22:18:13Z <p>I'm working on a C# project for which, until now, I've used immutable objects and factories to ensure that objects of type <code>Foo</code> can always be compared for equality with <code>==</code>. <code>Foo</code> objects can't be changed once created, and the factory always returns the same object for a given set of arguments. This works great, and throughout the code base we assume that <code>==</code> always works for checking equality.</p> <p>Now I need to add some functionality that introduces an edge case for which this won't always work. The easiest thing to do is to overload <code>operator ==</code> for that type, so that none of the other code in the project needs to change. But this strikes me as a code smell: overloading <code>operator ==</code> and not <code>Equals</code> just seems weird, and I'm used to the convention that <code>==</code> checks reference equality, and <code>Equals</code> checks object equality (or whatever the term is).</p> <p>Is this a legitimate concern, or should I just go ahead and overload <code>operator ==</code>?</p> http://stackoverflow.com/questions/1765843/c-operator-overloading-towards-practical 4 C# Operator overloading - towards practical udanamehar 2009-11-19T19:18:57Z 2009-11-19T20:27:40Z <p>Most of the websites,articles i have gone through explains operator overloading by giving the following standard example.</p> <pre><code>class Complex { int real; int imaginary; public Complex(int real, int imaginary) { this.real = real; this.imaginary = imaginary; } public static Complex operator +(Complex com1, Complex com2) { return new Complex(com1.real + com2.real, com1.imaginary + com2.imaginary); } public override string ToString() { return (String.Format("{0} + {1}i", real, imaginary)); } } } </code></pre> <p>We as beginners think ,operator overloading would be quite useful for scientific-application.</p> <p>Will operator overloading be quite useful for e-commerce ,ebanking or other applications? As we saw standard example given above,it quite hard to grasp the real power of operator overloading.could you please explain it by providing example as necessary.</p> http://stackoverflow.com/questions/1762049/templated-operator-overload-c 3 templated operator() overload C++ laulaulabs.mp 2009-11-19T09:37:26Z 2009-11-19T10:21:31Z <p>someone already asked this question, but the thread ended up with the original question not getting answered.</p> <p>suppose you have this:</p> <pre><code>template&lt;size_t i, class f_type&gt; void call_with_i(f_type f); </code></pre> <p>functor_type is either:</p> <p>a) a struct with a method that has the following signature:</p> <pre><code>template&lt;size_t i&gt; operator()() const; </code></pre> <p><strike> or, b) a function that looks like this:</p> <pre><code>template&lt;size_t i&gt; foo(); </code></pre> <p></strike></p> <p>I want "call_with_i&lt;42>(foo)" to be equivalent to "foo&lt;42>()", but I can't figure out the right syntax to make that happen. I'd be satified with a solution that does just (a) <strike>but (a)+(b) would be great</strike>. I've already tried these syntaxes:</p> <pre><code>f&lt; i &gt;(); // doesn't work f()&lt; i &gt;; // doesn't work f.operator&lt; i &gt;(); // doesn't work f.operator()&lt; i &gt;; // doesn't work f.operator()&lt; i &gt;(); // works on msvc, but doesn't work on gcc. </code></pre> <p><strong>How do you invoke operator() with explicit template arguments? <strike>Is there a way to invoke it in a way that the same syntax would also call a templated free function?</strike></strong></p> <p>p.s. If you're wondering what i'm using this for, its because I'm writing a function repeat_to where repeat_to&lt;10>(f) invokes f(0) then f(1) ... f(10). I'm using this to iterate through multiple boost::fusion vectors in parallel by index. yeah, i could use iterators, or i could just use a named member function, but i still want to know the answer.</p> <p>edit note: i striked out stuff because passing a templated free function as an arg doesn't make any sense.</p> http://stackoverflow.com/questions/1145022/difference-between-global-operator-and-member-operator 1 difference between global operator and member operator Vargas 2009-07-17T18:45:43Z 2009-11-18T21:14:53Z <p>Is there a difference between defining a global operator that takes two references for a class and defining a member operator that takes only the right operand?</p> <p>Global:</p> <pre><code>class X { public: int value; }; bool operator==(X&amp; left, X&amp; right) { return left.value == right.value; }; </code></pre> <p>Member:</p> <pre><code>class X { int value; bool operator==( X&amp; right) { return value == right.value; }; } </code></pre> http://stackoverflow.com/questions/1742700/does-a-destructor-always-get-called-for-a-delete-operator-even-when-it-is-overlo 2 Does a destructor always get called for a delete operator, even when it is overloaded? MaxVT 2009-11-16T15:01:16Z 2009-11-17T17:14:10Z <p>I'm porting a bit of an old code from C to C++. The old code uses object-like semantics, and at one point separates object destruction from freeing the now-unused memory, with <em>stuff</em> happening in between:</p> <pre><code>Object_Destructor(Object *me) { free(me-&gt;member1), free(me-&gt;member2) } ObjectManager_FreeObject(ObjectManager *me, Object *obj) { free(obj) } </code></pre> <p>Is the above functionality possible in C++ using the standard destructor (<code>~Object</code>) and a subsequent call to <code>delete obj</code>? Or, as I fear, doing that would call the destructor twice?</p> <p>In the particular case, the <code>operator delete</code> of <code>Object</code> is overridden as well. Is the definition I've read elsewhere ("when operator delete is used, and the object has a destructor, the destructor is always called) correct in the overridden operator case?</p> http://stackoverflow.com/questions/1734628/copy-constructor-and-operator-overload-in-c-is-a-common-function-possible 0 Copy constructor and = operator overload in C++: is a common function possible? MPelletier 2009-11-14T15:52:29Z 2009-11-14T18:23:42Z <p>Since a copy constructor</p> <pre><code>MyClass(const MyClass&amp;); </code></pre> <p>and an = operator overload</p> <pre><code>MyClass&amp; operator = (const MyClass&amp;); </code></pre> <p>have pretty much the same code, the same parameter, and only differ on the return, is it possible to have a common function for them both to use?</p> http://stackoverflow.com/questions/1729326/templated-class-cant-redefine-operator 0 templated class can't redefine operator[] gotch4 2009-11-13T13:55:07Z 2009-11-13T14:41:25Z <p>I've this class</p> <pre><code>namespace baseUtils { template&lt;typename AT&gt; class growVector { int size; AT **arr; AT* defaultVal; public: growVector(int size, AT* defaultVal ); //Expects number of elements (5) and default value (NULL) AT*&amp; operator[](unsigned pos); int length(); void reset(int pos); //Resets an element to default value void reset(); //Resets all elements to default value ~growVector(); }; } </code></pre> <p>and this is the implementation for operator[]</p> <pre><code>template&lt;typename AT&gt; AT*&amp; growVector&lt;AT&gt;::operator [](unsigned pos){ if (pos &gt;= size){ int newSize = size*2; AT** newArr = new AT*[newSize]; memcpy(newArr, arr, sizeof(AT)*size); for (int i = size; i&lt;newSize; i++) newArr[i] = defaultVal; size = newSize; delete arr; arr = newArr; } return arr[pos]; } </code></pre> <p>(yes I do realize i don't check if size*2 >= pos... but that's not the point now) if I use it in code like:</p> <pre><code>int main() { growVector&lt;char&gt; gv(); char* x = NULL; for (int i = 0; i&lt; 50; i++){ gv[i] = x; } gv.reset(); return 0; } </code></pre> <p>the compiler says</p> <pre><code>../src/base.cpp:98: warning: pointer to a function used in arithmetic ../src/base.cpp:98: error: assignment of read-only location ‘*(gv + ((unsigned int)i))’ ../src/base.cpp:98: error: cannot convert ‘char*’ to ‘baseUtils::growVector&lt;char&gt;()’ in assignment </code></pre> <p>referring to the line gv[i] = x; (seems like it doesn't see the redefinition of [])</p> <p>Why???? What am I missing?</p> http://stackoverflow.com/questions/1726740/c-error-operator-2-overloads-have-similar-conversions 0 c++ error: operator []: 2 overloads have similar conversions rakkarage 2009-11-13T02:22:05Z 2009-11-13T02:59:46Z <pre><code>template &lt;typename T&gt; class v3 { private: T _a[3]; public: T &amp; operator [] (unsigned int i) { return _a[i]; } const T &amp; operator [] (unsigned int i) const { return _a[i]; } operator T * () { return _a; } operator const T * () const { return _a; } v3() { _a[0] = 0; // works _a[1] = 0; _a[2] = 0; } v3(const v3&lt;T&gt; &amp; v) { _a[0] = v[0]; // Error 1 error C2666: 'v3&lt;T&gt;::operator []' : 2 overloads have similar conversions _a[1] = v[1]; // Error 2 error C2666: 'v3&lt;T&gt;::operator []' : 2 overloads have similar conversions _a[2] = v[2]; // Error 3 error C2666: 'v3&lt;T&gt;::operator []' : 2 overloads have similar conversions } }; int main(int argc, char ** argv) { v3&lt;float&gt; v1; v3&lt;float&gt; v2(v1); return 0; } </code></pre> http://stackoverflow.com/questions/1719928/why-is-this-syntax-invalid-vectorpointer-0 1 Why is this syntax invalid? vectorPointer->[0] dehmann 2009-11-12T04:43:09Z 2009-11-12T05:53:43Z <p>In <code>C++</code>, why is the following element access in a <code>vector</code> invalid?</p> <pre><code>void foo(std::vector&lt;int&gt;* vecPtr) { int n = vecPtr-&gt;size(); // ok int a = vecPtr-&gt;[0]; // invalid } </code></pre> <p>Instead, we have to write the more cumbersome</p> <pre><code> (*vecPtr)[0] = 1; </code></pre> <p>I think, the <code>operator[]</code> call should just have the same syntax like a method call, and I hate the extra star and parentheses. (I know C++ has a lot more serious issues, but this one annoys me every time when I have to type it ...)</p> http://stackoverflow.com/questions/1712394/overloading-insertion-operator-in-c 0 Overloading Insertion Operator in C++ Reti 2009-11-11T01:18:20Z 2009-11-11T02:06:09Z <p>I have a class in which I'm trying to overload the &lt;&lt; operator. For some reason, it is not being overloaded.</p> <p>Here is my .h file:</p> <pre><code>friend std::ostream&amp; operator&lt;&lt;(std::ostream&amp;, const course &amp;); //course is my class object name </code></pre> <p>in my .cpp, I have this as my implementation:</p> <pre><code>std::ostream&amp; operator&lt;&lt;(std::ostream &amp;out, const course &amp; rhs){ out &lt;&lt; rhs.info; return out; } </code></pre> <p>This should be correct, but when I try to compile it, it says that cout &lt;&lt; tmp; is not defined in ostream.</p> <p>I've included iostream in my .cpp and .h</p> <p>I'm been pulling my hair out trying to figure this out. Can you see anything that's wrong with this?</p> <p>EDIT: Since what I'm doing seems to be correct, here's all of my source code: <a href="http://pastebin.com/f5b523770" rel="nofollow">http://pastebin.com/f5b523770</a></p> <p>line 46 is my prototype</p> <p>line 377 is the implementation</p> <p>line 435 is where it fails when i attempt to compile it.</p> <p>also, I just tried compiling it on another machine, and it gives this error instead: </p> <pre><code>course.cpp:246: error: non-member function 'std::ostream&amp; operator&lt;&lt;(std::ostream&amp;, const course&amp;)' cannot have cv-qualifier make: *** [course.o] Error 1 </code></pre> http://stackoverflow.com/questions/1712047/overloading-the-ostream-operator-for-a-static-class 0 Overloading the ostream << operator for a static class? jamieQ 2009-11-10T23:41:52Z 2009-11-11T01:19:05Z <p>I have a (simplified) static global class and &lt;&lt; operator overload as follows:</p> <pre><code>class Global { private: static int counter; Global(){}; public: friend ostream&amp; operator&lt;&lt;(ostream &amp;out, Global &amp;global); } ostream&amp; operator&lt;&lt; (ostream &amp;out, Global &amp;global) { //... do output return out; } </code></pre> <p>I want to be able to pass a static reference to cout:</p> <pre><code>cout &lt;&lt; Global </code></pre> <p>However, the &lt;&lt; operator wants an instance, yet no instances of this global class actually exist. Is there anyway around this?</p> <p>Thanks for any help.</p> http://stackoverflow.com/questions/1711357/how-would-you-overload-the-operator-in-javascript 2 How would you overload the [] operator in javascript aarontfoley 2009-11-10T21:31:33Z 2009-11-10T21:37:56Z <p>I can't seem to find the way to overload the [] operator in javascript. Anyone out there know?</p> <p>I was thinking on the lines of ...</p> <pre><code>MyClass.operator.lookup(index) { return myArray[index]; } </code></pre> <p>or am I not looking at the right things.</p> <p>Thanks in advanced</p> http://stackoverflow.com/questions/1691007/whats-the-right-way-to-overload-operator-for-a-class-hierarchy 1 What's the right way to overload operator== for a class hierarchy? Kristo 2009-11-06T22:42:18Z 2009-11-09T14:47:48Z <p>Suppose I have the following class hierarchy:</p> <pre><code>class A { int foo; virtual ~A() = 0; }; A::~A() {} class B : public A { int bar; }; class C : public A { int baz; }; </code></pre> <p>What's the right way to overload <code>operator==</code> for these classes? If I make them all free functions, then B and C can't leverage A's version without casting. It would also prevent someone from doing a deep comparison having only references to A. If I make them virtual member functions, then a derived version might look like this:</p> <pre><code>bool B::operator==(const A&amp; rhs) const { const B* ptr = dynamic_cast&lt;const B*&gt;(&amp;rhs); if (ptr != 0) { return (bar == ptr-&gt;bar) &amp;&amp; (A::operator==(*this, rhs)); } else { return false; } } </code></pre> <p>Again, I still have to cast (and it feels wrong). Is there a preferred way to do this?</p> <p><strong>Update:</strong></p> <p>There are only two answers so far, but it looks like the right way is analogous to the assignment operator:</p> <ul> <li>Make non-leaf classes abstract</li> <li>Protected non-virtual in the non-leaf classes</li> <li>Public non-virtual in the leaf classes</li> </ul> <p>Any user attempt to compare two objects of different types will not compile because the base function is protected, and the leaf classes can leverage the parent's version to compare that part of the data.</p> http://stackoverflow.com/questions/1699532/how-to-convert-c-class-struct-to-a-primitive-different-type-class-struct 1 How to convert C++ class/struct to a primitive/different type/class/struct? Viet 2009-11-09T07:11:22Z 2009-11-09T07:37:10Z <p>Hi all! I have the following class CppProperty class that holds value:</p> <pre><code>template&lt;typename TT&gt; class CppProperty { TT val; public: CppProperty(void) { } CppProperty(TT aval) : val(aval) { } CppProperty(const CppProperty &amp; rhs) { this-&gt;val = rhs.val; } virtual ~CppProperty(void) { } TT operator=(TT aval) { this-&gt;val = aval; return this-&gt;val; } friend TT operator++(CppProperty &amp; rhs); friend TT operator--(CppProperty &amp; rhs); friend TT operator++(CppProperty &amp; rhs, int); friend TT operator--(CppProperty &amp; rhs, int); //template&lt;typename RR&gt; //friend RR operator=(RR &amp; lhs, const CppProperty &amp; rhs); //friend int &amp; operator=(int &amp; lhs, const CppProperty &amp; rhs); //int reinterpret_cast&lt;int&gt;(const CppProperty &amp; rhs); }; </code></pre> <p>I want to do assignment like this:</p> <pre><code>CppProperty&lt;char&gt; myproperty(10); myproperty++; int count = myproperty; </code></pre> <p>How this can be done? I can't override the operator=. Any help is greatly appreciated! Thank you!</p> http://stackoverflow.com/questions/1693271/cant-get-operator-overloading-to-work-with-linq-expression-trees 1 Can't get operator overloading to work with Linq Expression Trees Rickard 2009-11-07T14:45:07Z 2009-11-07T17:05:02Z <p>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 overloaded. But for some reason I cannot create arithmetic linq expression nodes due to the fact that it can't find the correct overload. Thing is, I swear I had this working some time ago but I can't figure out what I changed to make it break.</p> <p>I'll attach a small code sample showing the problem. The datatype below has the Addition operator overloaded. Using the overloaded operator works like a charm, but when I try to create an addition expression tree node using Expression.Add(lhs, rhs) the system throws an exception complaining that it can't find the overload for the Add operation.</p> <p>Does anyone have an idea of what I am doing wrong?</p> <p>Thank you, Rickard</p> <pre><code>open System.Linq.Expressions module DataType = exception NotImplementedYet of string type DataCarrier = | ScalarCarrier of float | VectorCarrier of float array member this.Add(other) = match (this, other) with | ScalarCarrier(x), ScalarCarrier(y) -&gt; ScalarCarrier(x + y) | VectorCarrier(u), VectorCarrier(v) -&gt; VectorCarrier(Array.map2 (fun x y -&gt; x + y) u v) | _,_ -&gt; raise (NotImplementedYet("No go!")) static member (+) (lhs:DataCarrier, rhs) = lhs.Add(rhs) module Main = let createAddOp (lhs:DataType.DataCarrier) (rhs:DataType.DataCarrier) = let clhs = Expression.Constant(lhs) let crhs = Expression.Constant(rhs) Expression.Add(clhs, crhs) (* no problems with this one *) printf "Testing operator overloading: %A" (DataType.ScalarCarrier(1.0) + DataType.ScalarCarrier(2.0)) (* this throws an exception *) printf "Testing expr construction %A" (Main.createAddOp (DataType.ScalarCarrier(1.0)) (DataType.ScalarCarrier(2.0))) </code></pre> http://stackoverflow.com/questions/1693336/overloading-operator 1 Overloading operator > Burgos 2009-11-07T15:06:18Z 2009-11-07T16:51:11Z <p>Hello, </p> <p>In my homework, I have to design a class Message; among other attributes, it has attribute "priority" (main goal is to implement priority queue).</p> <p>As in container I must check if one object is greater than other, I have overloaded operator '>'. Now, I have a few general questions about it...</p> <p>Question one:</p> <p><strong>If I overload operator '>', should I overload operator '&lt;' for arguments (const Message&amp;, const Message&amp;)?</strong></p> <p>My opinion is that overloading both > and &lt; and using it in code will generate an error: </p> <pre><code>if(message1 &gt; message2) { ... } </code></pre> <p>(Does the following code calls operator > for message1 object, or operator &lt; message2 object?)</p> <p>But, what if I use operator like this:</p> <pre><code>if(message1 &lt; message2) { ... } </code></pre> <p>? :confused: </p> <p>operator> is declared as friend function:</p> <pre><code>friend bool operator&gt;(const Message&amp; m1, const Message&amp; m2) </code></pre> <p>Does it need to be declared as member function?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1686699/operator-overloading-in-java 0 Operator overloading in Java Vipul 2009-11-06T10:23:38Z 2009-11-06T14:36:52Z <p>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.</p> http://stackoverflow.com/questions/1687395/overloading-the-operator-to-add-two-arrays 0 Overloading the + operator to add two arrays Anton Kreuzer 2009-11-06T12:50:51Z 2009-11-06T13:16:49Z <p>What's wrong with this C# code? I tried to overload the + operator to add two arrays, but got an error message as follows:</p> <p>One of the parameters of a binary operator must be the containing type.</p> <pre><code>class Program { public static void Main(string[] args) { const int n = 5; int[] a = new int[n] { 1, 2, 3, 4, 5 }; int[] b = new int[n] { 5, 4, 3, 2, 1 }; int[] c = new int[n]; // c = Add(a, b); c = a + b; for (int i = 0; i &lt; c.Length; i++) { Console.Write("{0} ", c[i]); } Console.WriteLine(); } public static int[] operator+(int[] x, int[] y) // public static int[] Add(int[] x, int[] y) { int[] z = new int[x.Length]; for (int i = 0; i &lt; x.Length; i++) { z[i] = x[i] + y[i]; } return (z); } } </code></pre> http://stackoverflow.com/questions/810600/datetime-difference-operator-considers-daylight-saving 3 DateTime difference operator considers daylight saving? Michael Damatov 2009-05-01T08:09:58Z 2009-11-04T22:12:06Z <p>As far as I know the difference operator of the <code>DateTime</code> type considers leap years: so </p> <pre><code>new DateTime(2008, 3, 1) - new DateTime(2008, 2, 1) // should return 29 days new DateTime(2009, 3, 1) - new DateTime(2009, 2, 1) // should return 28 days </code></pre> <p>But what about daylight saving?</p> http://stackoverflow.com/questions/1672537/c-in-operator-overloading 6 C# in operator-overloading Daniel Svensson 2009-11-04T09:09:22Z 2009-11-04T11:03:34Z <p>Hi,</p> <p>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:</p> <pre><code>if(x == 1 || x == 2 || x == 33 || x == 4 || x == -5 || x == 61) { ... } </code></pre> <p>x can be enums,strings,ints,chars you get the picture.</p> <p>I want to know if there are an easier way of writing this. I think of sql's operator 'in' for example as a eay to shorten the expression:</p> <pre><code>if(x in (1,2,33,4,-5,61)) { ... } </code></pre> <p>I know you can't write an expression like this with 'in' because the lexer and parser of the compiler won't recognize it.</p> <p>Perhaps other solutions as extension methods of different types of x is the solution? In the coming .NET 4.0 i heard something about parameterized methods, should that solve the n amount of parameters supplied to the if-expression ?</p> <p>Perhaps you understand me, have you an idea of a good practice/solution to this question?</p> <p>/Daniel</p> http://stackoverflow.com/questions/716658/overloading-in-c 0 Overloading = in C++ lampshade 2009-04-04T06:44:37Z 2009-11-02T10:13:27Z <p>Hi,</p> <p>Im trying to overload the assignment operator and would like to clear a few things up if thats ok.</p> <p>I have a non member function, <code>bool operator==( const MyClass&amp; obj1, const myClass&amp; obj2 )</code> defined oustide of my class.</p> <p>I cant get at any of my private members for obvious reasons.</p> <p>So what I think I need to do is to overload the assignment operator. And make assignments in the non member function.</p> <p>With that said, I think I need to do the following:</p> <ol> <li>use my functions and copy information using strcpy or strdup. I used strcpy.</li> <li>go to the assignment operator, bool MyClass::operator=( const MyClass&amp; obj1 );</li> <li>Now we go to the function overloading (==) and assign obj2 to obj1.</li> </ol> <p>I dont have a copy constructor, so I'm stuck with these:</p> <pre><code>class Class { private: m_1; m_2; public: .. }; void Class::Func1(char buff[]) const { strcpy( buff, m_1 ); return; } void Class::Func2(char buff[]) const { strcpy( buff, m_2 ); return; } bool Class&amp; Class::operator=(const Class&amp; obj) { if ( this != &amp;obj ) // check for self assignment. { strcpy( m_1, obj.m_1 ); // do this for all other private members. } return *this; } bool operator== (const Class&amp; obj1, const Class&amp; obj2) { Class MyClass1, MyClass2; MyClass1 = obj1; MyClass2 = obj2; MyClass2 = MyClass1; // did this change anything? // Microsofts debugger can not get this far. return true; } </code></pre> <p>So as you can probably tell, I'm completely lost in this overloading. Any tips? I do have a completed version overloading the same operator, only with <code>::</code>, so my private members won't lose scope. I return my assignments as true and it works in <code>main</code>. Which is the example that I have in my book.</p> <p>Will overloading the assignment operator and then preforming conversions in the <code>operator==</code> non member function work? Will I then be able to assign objects to each other in main after having completed that step?</p> http://stackoverflow.com/questions/1658268/in-the-msdn-guidance-on-equals-override-why-the-cast-to-object-in-the-null-check 2 In the msdn guidance on Equals override, why the cast to object in the null check? Mathias 2009-11-01T20:48:37Z 2009-11-01T22:15:26Z <p>I was just looking at the <a href="http://msdn.microsoft.com/en-us/library/ms173147%28VS.80%29.aspx" rel="nofollow">Guidelines for Overloading Equals() on msdn</a> (see code below); most of it is clear to me, but there is one line I don't get.</p> <pre><code>if ((System.Object)p == null) </code></pre> <p>or, in the second override</p> <pre><code>if ((object)p == null) </code></pre> <p>Why not simply</p> <pre><code> if (p == null) </code></pre> <p><strong>What is the cast to object buying us?</strong></p> <pre><code>public override bool Equals(System.Object obj) { // If parameter is null return false. if (obj == null) { return false; } // If parameter cannot be cast to Point return false. TwoDPoint p = obj as TwoDPoint; if ((System.Object)p == null) { return false; } // Return true if the fields match: return (x == p.x) &amp;&amp; (y == p.y); } public bool Equals(TwoDPoint p) { // If parameter is null return false: if ((object)p == null) { return false; } // Return true if the fields match: return (x == p.x) &amp;&amp; (y == p.y); } </code></pre> http://stackoverflow.com/questions/1656090/overriding-instance-variable-arrays-operators-in-ruby 0 Overriding instance variable array's operators in Ruby tt 2009-11-01T01:16:13Z 2009-11-01T01:45:20Z <p>Sorry for the poor title, I don't really know what to call this.</p> <p>I have something like this in Ruby:</p> <pre><code>class Test def initialize @my_array = [] end attr_accessor :my_array end test = Test.new test.my_array &lt;&lt; "Hello, World!" </code></pre> <p>For the <code>@my_array</code> instance variable, I want to override the <code>&lt;&lt;</code> operator so that I can first process whatever is being inserted to it. I've tried <code>@my_array.&lt;&lt;(value)</code> as a method in the class, but it didn't work.</p> http://stackoverflow.com/questions/1654820/is-this-a-good-efficient-idiom-for-implementing-equals-and-equality-inequality-op 2 Is this a good/efficient idiom for implementing Equals and equality/inequality operators? c-vigz 2009-10-31T16:11:38Z 2009-10-31T16:46:13Z <p>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/inequality operators for a custom immutable class. These operators are called very frequently by my program, so I want to make sure I get them right.</p> <pre><code>class MyObj { public static bool operator ==(MyObj a, MyObj b) { if (!object.ReferenceEquals(a, null)) return a.Equals(b); else if (!object.ReferenceEquals(b, null)) return b.Equals(a); else // both are null return true; } public static bool operator !=(MyObj a, MyObj b) { if (!object.ReferenceEquals(a, null)) return !a.Equals(b); else if (!object.ReferenceEquals(b, null)) return !b.Equals(a); else // both are null return false } public override bool Equals(object obj) { return this.Equals(obj as MyObj); } public bool Equals(MyObj obj) { if (object.ReferenceEquals(obj, null)) return false; else return (obj.FieldOne == this.FieldOne &amp;&amp; obj.FieldTwo == this.FieldTwo &amp;&amp; ...); } } </code></pre> http://stackoverflow.com/questions/1654796/why-does-not-c-support-operator-overloading-with-pass-by-reference 0 Why does not C# support operator overloading with pass by reference? Ivan Zlatanov 2009-10-31T16:04:14Z 2009-10-31T16:16:38Z <p>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++:</p> <pre><code>public ref class Test { public: static Test^ operator &amp;( Test^ msg, int&amp; i ) { i = i + 1; return nullptr; } }; </code></pre> <p>and then looked at the compiler omitted output:</p> <pre><code>public: static Test __gc* op_BitwiseAnd(Test __gc* msg, Int32 __gc** modopt(IsImplicitlyDereferenced __gc*) i) { i[0] += 1; return 0; } </code></pre> <p>I went further and tried to call this operator from C# project - and of course I needed to go [unsafe] to do it( I needed pointer ):</p> <pre><code>Test t = new Test(); int i = 0; unsafe { t = t &amp; &amp;i; } </code></pre> <p>Obviously not so hard to implement for the CLR? I really miss pass by reference in operators overloading and would like to at least in light myself in why is this missing? </p> <p>Why can't C# hide the ugliness behind the unsafe and pointers when we need to deal with reference variables in our operator overloads? Even if I chose to go with this ugly workaround it wouldn't work in Silverlight, where unsafe operations is not allowed...</p> http://stackoverflow.com/questions/1634341/overloading-arithmetic-operators-in-javascript 2 Overloading Arithmetic Operators in JavaScript? Peter McGrattan 2009-10-27T23:38:04Z 2009-10-29T05:02:26Z <p>This is the best way I can think of phrasing this question, given this JavaScript "class" definition:</p> <pre><code>var Quota = function(hours, minutes, seconds){ if (arguments.length === 3) { this.hours = hours; this.minutes = minutes; this.seconds = seconds; this.totalMilliseconds = Math.floor((hours * 3600000)) + Math.floor((minutes * 60000)) + Math.floor((seconds * 1000)); } else if (arguments.length === 1) { this.totalMilliseconds = hours; this.hours = Math.floor(this.totalMilliseconds / 3600000); this.minutes = Math.floor((this.totalMilliseconds % 3600000) / 60000); this.seconds = Math.floor(((this.totalMilliseconds % 3600000) % 60000) / 1000); } this.padL = function(val){ return (val.toString().length === 1) ? "0" + val : val; }; this.toString = function(){ return this.padL(this.hours) + ":" + this.padL(this.minutes) + ":" + this.padL(this.seconds); }; this.valueOf = function(){ return this.totalMilliseconds; }; }; </code></pre> <p>and the following test setup code:</p> <pre><code>var q1 = new Quota(23, 58, 50); var q2 = new Quota(0, 1, 0); var q3 = new Quota(0, 0, 10); console.log("Quota 01 is " + q1.toString()); // Prints "Quota 01 is 23:58:50" console.log("Quota 02 is " + q2.toString()); // Prints "Quota 02 is 00:01:00" console.log("Quota 03 is " + q3.toString()); // Prints "Quota 03 is 00:00:10" </code></pre> <p>Is there any way of implicitly creating <code>q4</code> as a <code>Quota</code> object using the addition operator as follows...</p> <pre><code>var q4 = q1 + q2 + q3; console.log("Quota 04 is " + q4.toString()); // Prints "Quota 04 is 86400000" </code></pre> <p>rather than resorting to...</p> <pre><code>var q4 = new Quota(q1 + q2 + q3); console.log("Quota 04 is " + q4.toString()); // Prints "Quota 04 is 24:00:00" </code></pre> <p>If not what are the best practice recommendations in this area for making custom numeric JavaScript objects composable via the arithmetic operators?</p>