Tagged Questions

0
votes
3answers
45 views

overload operator = in c#

Is it possible to overload operator = in c#? when i call =, i just want to copy properties, rather than making the left hand reference to refer another instance.
0
votes
5answers
98 views

Overload operators as member operator or non-member operator?

I am currently creating a utility class that will have overloaded operators in it. What are the pros and cons of either making them member or non-member functions? Or does it matter at all? Maybe …
0
votes
2answers
36 views

Accessing a class variable overloading brackets [] operators method in Ruby

Hi i want to do the following. I simply want to overload the [] method in order to access the instance variables... I know, it doesn't make great sense at all, but i want to do this for some strange …
0
votes
2answers
135 views

Implicit invocation of operator [C++]

Hi, I defined two classes: class Token_ { public: virtual char operator*()const = 0;//this fnc cannot run implicitly protected: Token_() { } Token_(const Token_&); Token_& …
13
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 to …
0
votes
2answers
117 views

c++ operator overloading

hello .. i'm not sure if what im talking about is an operator overloading question. is it possible to overload keywords in C++?? for example : i need to write loopOver(i=0; ;i++) instead of …
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, obj const& …
0
votes
3answers
172 views

C++ Overloading the >> operator

I need to overload the stream extraction operator. I need to do this by allowing a user to input a string of characters at a prompt, say "iamastring", and then the operator would extract each …
0
votes
3answers
158 views

How do I overload the I/O operators C++ (edited again)? Can anyone plz help?

I have created a class that allows the user to input their mailing address, order date, type of cookie ordered and the quantity. There were other errors, but I stayed late and with the assistance of …
2
votes
4answers
249 views

difference between global operator and member operator

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? Global: class X { public: int …
5
votes
3answers
95 views

Why are operators sometimes stand-alone and sometimes class methods?

Why is that sometimes an operator override is defined as a method in the class, like MyClass& MyClass::operatorFoo(MyClass& other) { .... return this; }; and sometimes it's a separate …
4
votes
2answers
452 views

Custom types as key for a map - C++

I am trying to assign a custom type as a key for std::map. Here is the type which I am using as key. struct Foo { Foo(std::string s) : foo_value(s){} bool operator<(const Foo& foo1) { …
6
votes
2answers
111 views

ruby operator overloading question

i've been messing around with ruby and opengl for entertainment purposes, and i decided to write some 3d vector/plane/etc classes to pretty up some of the math. simplified example: class Vec3 …
2
votes
6answers
103 views

c++: Operator overloading and error handling

Hi, I am currently starting to look into operator overloading in c++ for a simple 2D vertex class where the position should be available with the [] operator. That generally works, but I dont really …
2
votes
3answers
215 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 …

1 2 3 4 5 15 next
15 30 50 per page