vote up 1 vote down star
1

I have a need to implement dynamic array by myself to use it in simple memory manager.

struct Block {
int* offset; bool used; int size; Block(int* off=NULL, bool isUsed=false, int sz=0): offset(off), used(isUsed), size(sz) {} Block(const Block& b): offset(b.offset), used(b.used), size(b.size) {} };

class BlockList { Block* first; int size; public: BlockList(): first(NULL), size(0) {} void PushBack(const Block&); void DeleteBack(); void PushMiddle(int, const Block&); void DeleteMiddle(int); int Size() const { return size; } void show(); Block& operator; Block* GetElem(int); void SetElem(int, const Block&); ~BlockList(); };

I need to overload operator[].
Block& BlockList::operator[](int index) {
    try {
    	if (index >= size)
    		throw out_of_range("index out of range");
    	else 
    		return (first[sizeof(Block)*index]);
    }
    catch(exception& e) {
    	cerr << e.what() << endl;
    }
}

void BlockList::PushBack(const Block& b) { if(!size) first = new Block(b); else { Block* temp = new Block[size + 1]; int i = 0; for (i = 0; i < size; i++) temp[sizeof(Block)*i] = this->operator; delete []first; temp += sizeof(Block); temp->offset = b.offset; temp->size = b.size; temp->used = b.used; first = temp; } size++; }

when I use PushBack to push the 1st element it works OK, but when it comes to second, third, ... - program didnt crash but it just shows results I didnt expect to see.
Here is how I get the contents of my array:
void BlockList::show() {
    for (int i = 0; i < size; i++) {
    	Block current(operator);
    	cout << "off: " << current.offset << " size: " << current.size << endl;
    }
}

flag

Why not use std::vector? If you want it to work with your memory manager, pass it a custom allocator. It seems like you're solving the wrong problem. – jalf Feb 28 at 13:52
because the aim of that work is to get a compiler with ability to compile itself, so I can`t use STL and templates - it`s too hard to implement templates from scratch – chester89 Feb 28 at 14:04

2 Answers

vote up 3 vote down check

first is a Block pointer so you only need to pass in index.

Block* first; ...

first[0] //returns the first element
first[1] //returns the second element

In your example you are passing in too high of an index value when indexing first because you're using sizeof inside.

Corrected code:

Block& BlockList::operator[](int index) {
    try {
        if (index >= size)
        	throw out_of_range("index out of range");
        else 
        	return (first[index]);//<--- fix was here
    }
    catch(exception& e) {
        cerr << e.what() << endl;
    }
}
link|flag
vote up 1 vote down

An array knows how big its elements are, so you don't have to do the math with sizeof(Block). Just use i as the index.

On a related note, the C++ FAQ Lite has a great section on operator overloading that covers all kinds of useful stuff.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.