[comp.lang.c++] overloading of operators

hawley@nethris.ucr.edu (brian hawley) (11/17/90)

The following has me stumped.

I'm implementing a one dimensional bitvector class.  I want as part
of its operators, union (+), set difference (-).

Other class's use this, and pass as an argument to the constructor,
the size of the bitvector.  For this reason, I had to declare the
instances of the bitvectors as pointers to the bitvector class. (
the size isn't known until runtime.

i.e.

class BitVector {
		char *colptr;
		public:
			BitVector(int size);
			friend BitVector &operator +(BitVector &, BitVector &);
			friend BitVector &operator -(BitVector &, BitVector &);
			BitVector &operator =(BitVector &);
}

// note: the compiler wouldn't let me declare tham as anything but &

class foobar {
	BitVector *vector;
	public:
		foobar(some stuff);
}


At some point during the code, the following call will be made:

foobar::foobar(some stuff) {

	vector = new BitVector(size);
}

In other routines, I want to perform union, difference, (and other
operators) as well as assignments.

I can only get things to partially work, and the c++ book I have 
(Dewhurst & Stark) seems only to talk about static instances of
classes in relation to overloaded operators.  So it is little help.


Does anyone have any insight or info?  I've tried several things, and
am still unable to get what I want.


Thanks in advance for any help,

Brian


------------------------------------------------------------------------------
Brian N. Hawley                            Internet: hawley@ucrmath.ucr.edu
Dept. of Math & Computer Science           uucp: {ucsd, uci}!ucrmath!hawley
Univ. of Calif., Riverside, CA 92521       phone: (714) 787-4645

jimad@microsoft.UUCP (Jim ADCOCK) (11/22/90)

In article <9978@ucrmath.ucr.edu> hawley@nethris.ucr.edu (brian hawley) writes:
|
|The following has me stumped.
|
|I'm implementing a one dimensional bitvector class.  I want as part
|of its operators, union (+), set difference (-).
|
|Other class's use this, and pass as an argument to the constructor,
|the size of the bitvector.  For this reason, I had to declare the
|instances of the bitvectors as pointers to the bitvector class. (
|the size isn't known until runtime.
|
|i.e.
|
|class BitVector {
|		char *colptr;
|		public:
|			BitVector(int size);
|			friend BitVector &operator +(BitVector &, BitVector &);
|			friend BitVector &operator -(BitVector &, BitVector &);
|			BitVector &operator =(BitVector &);
|}
|
|// note: the compiler wouldn't let me declare tham as anything but &
|
|class foobar {
|	BitVector *vector;
|	public:
|		foobar(some stuff);
|}
|
|
|At some point during the code, the following call will be made:
|
|foobar::foobar(some stuff) {
|
|	vector = new BitVector(size);
|}
|
|In other routines, I want to perform union, difference, (and other
|operators) as well as assignments.
|
|I can only get things to partially work, and the c++ book I have 
|(Dewhurst & Stark) seems only to talk about static instances of
|classes in relation to overloaded operators.  So it is little help.
|
|
|Does anyone have any insight or info?  I've tried several things, and
|am still unable to get what I want.

Hm, you haven't exactly identified what the problems you're running into
are, but it sounds like at least one problem that your running into
relates to wanting to maintain a reference to an object, and then
perform value semantics operations on those references:

	*pbitvec1 = *pbitvec2 + *pbitvec3;

where presumably one would rather be saying:

	bitvec1 = bitvec2 + bitvec3;

unless one doesn't believe in overloaded operators, in which case one
would make a case for:

	pbitvec1->Becomes(pbitvec2->Union(pbitvec3));

or similar.  First, if you can get away with only initializing the
references you're using once, you'd be better off to use references 
rather than pointers to represent you bitvecs:

	rbitvec1 = rbitvec2 + rbitvec3;

If you need to be able to reassign the references, like most object oriented
languages allow you to do, then I don't have a good suggestion, short of
convincing the ANSI committee to add overloaded operator dot to the language,
so that one can easily make one's own reassignable reference class.

Second, you almost certainly need to return actual bitvecs, not references from
binary operators, like op+ and op-.  This in turn implies that bitvecs
need a two level construction analogous to C++ string implementation:
The fixed size part of a bitvec object points to a variable length part.

This problem then is analogous to C++ string classes, where operator+
is overloaded to join two strings together.  See any C++ text that
beats to death the issue of strings and overloaded operators.  Hanson's
text, being probably the best example.