vote up 1 vote down star

I need a way to create a string of n chars. In this case ascii value zero.

I know I can do it by calling the constructor:

string sTemp(125000, 'a');

but I would like to reuse sTemp in many places and fill it with different lengths.

I am calling a library that takes a string pointer and length as an argument and fills the string with bytes. (I know that technically string is not contiguous, but for all intents and purposes it is, and will likly become the standard soon). I do NOT want to use a vector.

is there some clever way to call the constructor again after the string has been created?

flag

47% accept rate

2 Answers

vote up 5 vote down check

The string class provides the method assign to assign a given string a new value. The signatures are

1. string& assign ( const string& str );
2. string& assign ( const string& str, size_t pos, size_t n );
3. string& assign ( const char* s, size_t n );
4. string& assign ( const char* s );
5. string& assign ( size_t n, char c );
6. template <class InputIterator> 
     string& assign ( InputIterator first, InputIterator last );

Citing source: cplusplus.com (I recommend this website because it gives you a very elaborated reference of the C++ standard libraries.)

I think you're looking for something like the fifth one of these functions: n specifies the desired length of your string and c the character filled into this string. For example if you write

sTemp.assign(10, 'b');

your string will be solely filled with 10 b's.

I originally suggested to use the STL Algorithm std::fill but thus your string length stays unchanged. The method string::resize provides a way to change the string's size and fills the appended characters with a given value -- but only the appended ones are set. Finally string::assign stays the best approach!

link|flag
Why down voting? Please leave at least a comment with the reason. Only this way one can learn! – phlipsy Oct 16 at 7:06
I didn't downvote, but I dont want another #include if possible – Mike Trader Oct 16 at 7:15
As you noticed fill is not good because it does not allow to change the size of the string. resize uses the initial character only to initialize new characters in the string (after resizing). Thous original string remains unmodified. Those are not consistent with desired effect of "call the constructor again". The proper function is assign. – Adam Badura Oct 16 at 7:46
@Adam Badura: Yeah my first answer was quite a shoot from the hip. And Mike Trader is right when he commented he don't want to add a new header file if it isn't necessary. – phlipsy Oct 16 at 7:54
I think you could remove the fill suggestion. IMO, assign is there precisely for that, and even beats the resize function (which will not do the right thing, if the string didn't happen to be empty). – UncleBens Oct 16 at 18:05
show 1 more comment
vote up 2 vote down

Try to use:

sTemp.resize(newLength, 'a');

References:

void __CLR_OR_THIS_CALL resize(size_type _Newsize)
	{	// determine new length, padding with null elements as needed
	resize(_Newsize, _Elem());
	}

void __CLR_OR_THIS_CALL resize(size_type _Newsize, _Elem _Ch)
	{	// determine new length, padding with _Ch elements as needed
	if (_Newsize <= _Mysize)
		erase(_Newsize);
	else
		append(_Newsize - _Mysize, _Ch);
	}
link|flag
1  
Saying "it's the following" is misleading. That's one implementation. – GMan Oct 16 at 6:52
You are right, I rephrased. – Gal Goldman Oct 16 at 6:54
Also, that's the wrong resize function :) – GMan Oct 16 at 6:57
10x, wrong CTRL-V... – Gal Goldman Oct 16 at 7:03
perfect. I guess I just missed that. thx – Mike Trader Oct 16 at 7:19
show 6 more comments

Your Answer

Get an OpenID
or

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