2
votes
5answers
131 views
overloading operator delete, or how to kill a cat?
I am experimenting with overloading operator delete, so that I can return a plain pointer to those who don't wish to work with smart pointers, and yet be able to control when the object is deleted.
I …
1
vote
4answers
138 views
c++ () operator problem
I've got another problem when trying to overload the () operator for array access:
const OctTreeNode*& operator()(const int i, const int j, const int k) const{
return …
0
votes
4answers
108 views
operator overloading in python [closed]
Possible Duplicates:
Python: defining my own operators?
Rules of thumb for when to use operator overloading in python
hi.. can i overload operators in python?
if so, can i define new …
0
votes
3answers
47 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
108 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
136 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_& …
0
votes
2answers
37 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
120 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 …
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 …
0
votes
3answers
173 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 …
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 …
6
votes
2answers
117 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
104 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 …
0
votes
3answers
189 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 …
3
votes
2answers
94 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)
…
