1
vote
5answers
78 views
Template with static functions vs object with non-static functions in overloaded operator
Which approach is the better one and why?
template<typename T>
struct assistant {
T sum(const T& x, const T& y) const { ... }
};
template<typename T>
T operator+ (const …
0
votes
6answers
90 views
operator/ overloading
For learning purposes I'm creating big integer class in C++. There are 2 files:
big_int.h
#ifndef BIG_INT_H
#define BIG_INT_H
#include
class big_int
{
public:
big_int(void);
…
3
votes
2answers
85 views
C# How to make a generic class?
How can I make this generic?
class AtomicReference
{
private Object _value;
public AtomicReference()
{
_value = new Object();
}
public AtomicReference(Object value)
…
0
votes
3answers
187 views
What on earth would compell C++ to call this function?
I'm working on a programming language that uses C++ as it's target language for now. I'm hitting an exceptionally strange backtrace.
#1 0x08048d09 in factorial (n=0x8052160) at ir.cpp:35
35 …
2
votes
4answers
117 views
Const correctness in C++ operator overloading returns
Hi! I'm a little confused as to why I've been told to return const foo from a binary operator in c++ instead of just foo.
I've been reading Bruce Eckel's "Thinking in C++", and in the chapter on …
1
vote
1answer
80 views
How do you overload the << operator in Ruby?
I'm not sure how to accomplish overloading the << operator for a method. This is how I assumed it would work:
def roles<<(roles)
...
end
That however, throws errors. Any …
0
votes
2answers
63 views
help overloading << and >> to display two values
This may be a novice question, but I can't figure it out by inspecting the book I have.
The class's constructor initializes two doubles, and I want the following code to output those two doubles with …
3
votes
4answers
194 views
Overloading operator<< for a templated class
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:
These two …
0
votes
2answers
62 views
Overload template relational operators
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. …
13
votes
3answers
511 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.
…
0
votes
2answers
98 views
C++ overloading operator= in template
Hi all I'm having trouble with C++ template operator=
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, …
2
votes
3answers
187 views
C# overloading operator== versus Equals()
I'm working on a C# project for which, until now, I've used immutable objects and factories to ensure that objects of type Foo can always be compared for equality with ==. Foo objects can't be changed …
4
votes
5answers
139 views
C# Operator overloading - towards practical
Most of the websites,articles i have gone through explains operator overloading by giving the
following standard example.
class Complex
{
int real;
int imaginary;
public …
3
votes
3answers
125 views
templated operator() overload C++
someone already asked this question, but the thread ended up with the original question not getting answered.
suppose you have this:
template<size_t i, class f_type>
void call_with_i(f_type …
2
votes
9answers
189 views
Does a destructor always get called for a delete operator, even when it is overloaded?
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 stuff happening in …
