vote up 8 vote down star
1

In std::string there are only const members to fetch the data like c_str(). However I can get a reference to the first element of the string via operator[] and I can write to it.

For example, if I have function:

void toupper(char *first,char *last_plus_one);

I can write directly to vector getting a pointer to the first element:

vector<char> message // has "Some Message";
toupper(&message[0],&message[0]+message.size());

Can I do same thing with std::string?

string message="Some Message";
toupper(&message[0],&message[0]+message.size());

Does the standard guarantee that the location of the memory is actually linear? ie:

&(*(message.begin()+n)) == &message[n]

Thanks.

flag

70% accept rate
Can't you simply templatize the toupper function allowing to use string iterators instead of pointers? – jalf Apr 17 at 15:17
If I could I wouldn't ask. Think of I have a large 3rd pary library that may support unicode or other things and their api works with pointers. Because it is just cost to much to implement this as template. – Artyom Apr 17 at 15:20
@jalf: I don't have the standard at hand, but I believe that std::to_upper is exactly what you propose. – dribeas Apr 17 at 16:19

5 Answers

vote up 9 vote down check

std::string will be required to have contiguous storage with the new c++0x standard. Currently that is undefined behavior.

link|flag
1  
Is there known compiler that uses un-contigous strings? I.E. Can I relate on in 99% of cases (maybe just do work-arounds for specific compilers to prevent copy-overhead) – Artyom Apr 17 at 15:11
3  
I've always thought it would be 'neat' to have a compiler/library that was (excessively) pedantic about these types of things. It would do things the hard/inefficient/unexpected way while still being compliant. – Dan Apr 17 at 15:21
1  
It's almost certain to be contiguous - but std::string also stores things like the length which migth be invalid if you do this. – Martin Beckett Apr 17 at 15:36
1  
@Artyom: I don't know of any semi-current implementation that doesn't have contiguous storage. However, the extremely early releases of SGI's stl used storage that was similar to a deque. – CTT Apr 17 at 15:39
6  
Why are you even worrying about these issues. Use an iterator and all the problems go away!! – Martin York Apr 17 at 15:50
show 2 more comments
vote up -1 vote down

I think that it gives you an undefined behavior. Use a stringstream to write to, and then use the str() member to get the string of the stream.

link|flag
Wrong. You can write to a string. – Martin York Apr 17 at 15:43
vote up 13 vote down

Herb Sutter has this to say (http://herbsutter.wordpress.com/2008/04/07/cringe-not-vectors-are-guaranteed-to-be-contiguous/#comment-483):

current ISO C++ does require &str[0] to cough up a pointer to contiguous string data (but not necessarily null-terminated!), so there wasn’t much leeway for implementers to have non-contiguous strings, anyway. For C++0x we have already adopted the guarantee that std::string contents must indeed be stored contiguously. For details, see http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#530

And Matt Austern says similar in the referenced document (http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#530).

So, it seems that you can assume that once you call str[0] you do get a modifyable array of characters (but note that it is not required to be null terminated).

link|flag
Actually from the links I see C++03 does not require continuos memory, but in practice there is no other implementations. – Artyom Apr 17 at 15:42
I know better than to doubt Sutter, but do anyone have a reference to &str[0] being required to yield a pointer to contiguous data? – jalf Apr 17 at 15:47
According to Austern, accessing via operator[] requires the contiguous array, accessing via an iterator does not (so &str.begin() wouldn't). I wouldn't argue with wither Sutter or Austern, but I was still not confident enough that I put the "So, it seems" weasel words in. – Michael Burr Apr 17 at 15:55
Ok I see what you are talking, I just try to find the reference to standard that says this. – Artyom Apr 17 at 16:06
I think both Austern and Sutter are implying that at least up to C++ 03, std::string does not need to be contiguous but no known implementations have it any other way. The bottom line is that the examples in the question are "undefined behaviour". Searching for "contiguous" or "[0]" from the beginning of the library section goes straight through the 'string' section and stops in 'vector'. – Richard Corden Jun 4 at 17:14
vote up 4 vote down

Yes you can modify a string.

You can also use it in algorithms that use iterators.

You can not use it in the same way as a vector<> because there is no guarantee that elements are in contiguous memory locations (yet: coming to a standard near you soon).

So if you modify your approach to use iterators rather than pointers it should work. And because iterators behave very much like pointers the code changes should be negligible.

template<typename I>
void toupper(I first,I last_plus_one)
{
    // Probably the same code as you had before.
}


{
     std::string  s("A long string With Camel Case");

     toupper(s.begin(),s.end());
}
link|flag
vote up 2 vote down

As it has been pointed-out, one can use strings in algorithms that use iterators; the same case can be implemented using std::transform Ex:- consider a string 's' to be converted to lower case:

int (*pf)(int)=tolower; //lowercase
std::transform(s.begin(), s.end(), s.begin(), pf);

Regards,

link|flag

Your Answer

Get an OpenID
or

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