Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to resize a char array[size] to char array[new_size] at runtime.

How can I do this?

share|improve this question
1  
You want to resize a statically allocated char[]? – Mehrdad Afshari Aug 30 '09 at 21:08
@Mehrdad: No he doesn't, it's just a visualisation of the array's sizes ;) – Cecil Has a Name Aug 30 '09 at 21:13
@HoNgOuRu: Can you show us some of your code please? – quamrana Aug 30 '09 at 21:34

6 Answers

If you were using std::vector<char> rather than arrays, then the feature you want would be just another method on the type.

share|improve this answer

assuming char array[size] was malloc'ed....you can use realloc

example (taken from OpenBSD's man page):

newsize = size + 50;
if ((newp = realloc(p, newsize)) == NULL) {
   free(p);
   p = NULL;
   size = 0;
   return (NULL);
}
p = newp;
size = newsize;
share|improve this answer
Ew. [15 chars] – GManNickG Aug 30 '09 at 21:31
@GMan: that's very standard, even idomatic. I mean, std::vector does it or something equivalent, you just don't have to look at it, and if coding it by hand, you'd be well advised to wrap it up too. – dmckee Aug 30 '09 at 22:17
2  
Of course. It's more abstracted in a vector. A vector calls an allocator, and that allocator can do whatever it needs. – GManNickG Aug 30 '09 at 22:33
Though available in C++, malloc is not the standard way of allocating memory in C++. If the questioner was asking about C then this would be a valid answer but the questioner is asking about C++. – Loki Astari Aug 30 '09 at 23:06
Yes, using a STL container like vector should be used but that's not what he asked. Read the question in his post. – Los Aug 31 '09 at 0:35

You have to allocate a new array and copy the contents of the existing array to it. You can't simply make the existing array larger

share|improve this answer
I have to declare the char array[] in the class header, but I need to build it according the length of a word, I am doing the hang up game... – HoNgOuRu Aug 30 '09 at 21:10
@HoNgOuRu : put this in your question - it's important. – MSalters Aug 31 '09 at 8:04

Something like this:

class HangUpGame {
    char *palabra;
    size_t palabra_size;

    public:
        HangUpGame(){
            palabra = new char[DEFAULT_SIZE];
            palabra_size = DEFAULT_SIZE;
        }
        virtual ~HangUpGame(){
            delete [] palabra;
        }

        void Resize(size_t newSize){
            //Allocate new array and copy in data
            char *newArray = new char[newSize];
            memcpy(newArray, palabra, palabra_size);

            //Delete old array
            delete [] palabra;

            //Swap pointers and new size
            palabra = newArray;
            palabra_size = newSize;
        }
};

In response to the comments on other answers, the best way to do this actually would be to use an STL container. But anyway, if you prefer to use arrays, it's quite easy to swap the current array with a bigger one (internally the STL containers will do exactly that anyway).

share|improve this answer
2  
Can you improve your answer so that it actually compiles please? – quamrana Aug 30 '09 at 21:32
Well, the version before did compile... depending on where you wrote it. Anyway, the new code compiles fine and should work correctly. – LorenzCK Aug 31 '09 at 14:40
1  
This code has several major bugs in it. Please look up the shallow copy problem. Please read this for the corrections you need: stackoverflow.com/questions/255612/… – Loki Astari Aug 31 '09 at 14:57

Delete the old array, if any, and then allocate a new one:

char* array = (char*)malloc(sizeof(char) * number_of_chars_in_word);
share|improve this answer
thanks for all the answers, but my problem is that I cannot change the array name cause its defined in the object, I have to define it with a size, but I don't have one before I load a word, and this happens in the constructor. in the class definition I have, string palabra; char palocu[size_of_palabra]; (but at this point I dont have size_of_palabra, cause it will be loaded in the constructor, that's my problem...I need this cause I have to access "palocu" at a later time from the main class... – HoNgOuRu Aug 30 '09 at 21:33
2  
Like we've been saying, use a std::vector. – GManNickG Aug 30 '09 at 21:34
@HoNgOuRu: Please show us the code. You can probably get away with a char* palocu; member which is newed in the constructor and deleted in the destructor. But you may still be better off with std::vector. – quamrana Aug 30 '09 at 22:01
up vote 0 down vote accepted

ok, thanks for all the answers, I fixed my problem just by creating a new space for the new char array throwght a pointer... thanks

share|improve this answer
5  
No, no, no. Use a std::vector. Why would you do otherwise? You're reinventing the wheel, and it'll probably be buggy at that. – GManNickG Aug 30 '09 at 21:48
1  
@GMan: Yes, and will probably leak memory. – quamrana Aug 30 '09 at 21:58
1  
...or maybe a std::string? – Jefromi Aug 30 '09 at 23:20
It's not homework, is it? – Cecil Has a Name Aug 31 '09 at 0:27
@GMan, @quamrana: Using a STD container like vector would be ideal, unless his data structure is exposed through a lib (ie...a C program needs to use it). Just because he's using a char pointer array does not mean it'll leak memory (as long as all cases are considered). @Cecil Has a Name: This better not be some kids high school homework. ;) – Los Aug 31 '09 at 0:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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