2
votes
3answers
130 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 obje …
4
votes
5answers
121 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 imagin …
3
votes
3answers
112 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 c …
2
votes
9answers
172 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 stuf …
0
votes
5answers
189 views
Copy constructor and = operator overload in C++: is a common function possible?
Since a copy constructor
MyClass(const MyClass&);
and an = operator overload
MyClass& operator = (const MyClass&);
have pretty much the same code, the same parame …
0
votes
4answers
98 views
templated class can’t redefine operator[]
I've this class
namespace baseUtils {
template<typename AT>
class growVector {
int size;
AT **arr;
AT* defaultVal;
public:
growVector(int size, A …
0
votes
7answers
133 views
c++ error: operator []: 2 overloads have similar conversions
template <typename T>
class v3 {
private:
T _a[3];
public:
T & operator [] (unsigned int i) { return _a[i]; }
const T & operator [] (unsigned int i) cons …
1
vote
3answers
113 views
Why is this syntax invalid? vectorPointer->[0]
In C++, why is the following element access in a vector invalid?
void foo(std::vector<int>* vecPtr) {
int n = vecPtr->size(); // ok
int a = vecPtr->[0]; // inva …
2
votes
3answers
96 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 my …
0
votes
4answers
93 views
Overloading the ostream << operator for a static class?
I have a (simplified) static global class and << operator overload as follows:
class Global
{
private:
static int counter;
Global(){};
public:
friend os …
1
vote
3answers
93 views
How to convert C++ class/struct to a primitive/different type/class/struct?
Hi all! I have the following class CppProperty class that holds value:
template<typename TT>
class CppProperty
{
TT val;
public:
CppProperty(void)
{
}
C …
0
votes
3answers
102 views
Overloading Insertion Operator in C++
I have a class in which I'm trying to overload the << operator. For some reason, it is not being overloaded.
Here is my .h file:
friend std::ostream& operator<<(s …
1
vote
2answers
107 views
What’s the right way to overload operator== for a class hierarchy?
Suppose I have the following class hierarchy:
class A
{
int foo;
virtual ~A() = 0;
};
A::~A() {}
class B : public A
{
int bar;
};
class C : public A
{
int baz;
…
1
vote
3answers
122 views
Overloading operator >
Hello,
In my homework, I have to design a class Message; among other attributes, it has attribute "priority" (main goal is to implement priority queue).
As in container I must c …
0
votes
5answers
141 views
Operator overloading in Java
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.
