Tagged Questions

4
votes
3answers
152 views

Why isn’t std::string::max_size() == std::string::allocator::max_size()

Recently I've noticed that the following statement is not true given std::string s. s.max_size() == s.get_allocator().max_size(); I find this interesting, by default std::string …
3
votes
7answers
360 views

convert string to argv in c++

I have an std::string containing a command to be executed with execv, what is the best "C++" way to convert it to the "char *argv[]" that is required by the second parameter of exe …
0
votes
5answers
134 views

C++ Error: No Match for Call

I'm trying to compile the following code in C++ string initialDecision () { char decisionReviewUpdate; cout << "Welcome. Type R to review, then press enter." << en …
4
votes
2answers
147 views

What’s the difference between std::string::c_str and std::string::data?

Why would I ever want to call std::string::data() over std::string::c_str()? Surely there is some method to the standard's madness here...
3
votes
2answers
110 views

QT how to use std::string in a QLineEdit

Dear All, I have the following problem. I am trying to integrate a large code written by me with a QT interface. Some of my functions return std::string; I did not succeed in maki …
4
votes
3answers
411 views

C++ difference between automatic type conversion to std::string and char*

As a learning exercise, I have been looking at how automatic type conversion works in C++. I know that automatic type conversion should generally be avoided, but I'd like to incre …
1
vote
1answer
235 views

std::string::assign() causes segfault

The situation: I have a std::vector that contains strings at specific offsets. Here's a shortened dump: ... @128 00 00 00 00 00 00 00 00 73 6F 6D 65 74 68 69 33 ........someth …
-1
votes
5answers
248 views

std::string’s character reference

I have the following string: index 0 1 2 3 4 5 6 7 std::string myString with the content of "\xff\xff\xff\x00\xff\x0d\x0a\xf5" …
2
votes
5answers
427 views

convert a char* to std::string

I need to use std::string to store data retrieved by fgets(). To do this I need to convert fgets() char* output into an std::string to store in an array. How can this be done?
1
vote
5answers
418 views

How to force std::stringstream operator >> to read an entire string?

How to force std::stringstream operator >> to read an entire string instead of stopping at the first whitespace? I've got a template class that stores a value read from a text fil …
6
votes
13answers
1k views

C++ char* vs std::string

Hello everybody there! When I use std::string and when char* to manage arrays of chars in C++? It seems you should use char* if performance(speed) is crucial and you're willing t …
1
vote
8answers
320 views

int to std::string?

I have following code: Tools::Logger.Log(string(GetLastError()), Error); GetLastError() returns a DWORD a numeric value, but the constructor of std::string doesnt accept a DWORD …
6
votes
4answers
5k views

How to Convert CString and ::std::string ::std::wstring to each other?

CString is quit handy, while std::string is more compatible with stl container. I am using hash_map, however, hash_map does not support CString as key, so I wish I could convert CS …
2
votes
6answers
471 views

How do I allocate a std::string on the stack using glibc’s string implementation?

int main(void) { std::string foo("foo"); } My understanding is that the above code uses the default allocator to call new. So even though the std::string foo is allocated on t …
0
votes
3answers
278 views

Copy constructor to initialise a string variable in c++ [closed]

I am investing the behaviour of std::string in linux/mac. i need to use gdb to confirm the working of std::string. the question i need to ask is how do i use the copy constructor …