Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
1answer
594 views

What is the point of STL Character Traits?

I notice that in my copy of the SGI STL reference, there is a page about Character Traits but I can't see how these are used? Do they replace the string.h functions? They don't seem to be used by ...
4
votes
3answers
708 views

Can one leverage std::basic_string to implement a string having a length limitation?

I'm working with a low-level API that accepts a char* and numeric value to represent a string and its length, respectively. My code uses std::basic_string and calls into these methods with the ...
3
votes
1answer
225 views

STL basic_string length with null characters

Why is it that you can insert a '\0' char in a std::basic_string and the .length() method is unaffected but if you call char_traits<char>::length(str.c_str()) you get the length of the string up ...
2
votes
2answers
83 views

std::string allocation policy

I am a bit confused with some of the basic string implementation. I have been going through the source to understand the inner working and learn new things. I can't entirely grasp how the memory is ...
2
votes
3answers
310 views

std::string::back()

Why isn't there a std::basic_string<...>::back() member function? The functionality is obviously there, I mean, one can write myString[myString.size()-1] *myString.rbegin() Am I assuming ...
0
votes
1answer
948 views

Error LNK2019: unresolved external symbol “class std::basic_string”

Environment: Windows XP. Visual Studios 2010. Language - C++. I have run into the following link error & have run out of ideas how to fix this problem. I have a project (CnD Device) which links ...
0
votes
1answer
162 views

C++ mysql++ problem with linking

today I added a class which manage the connection to a MySQL Server, it will be multi-threaded so want to use mysql++. I downloaded the newest version and compiled it in Debug mode without any errors. ...
0
votes
2answers
171 views

Invalid declarator before custom basic string

I a trying to compile the following code using gcc , but i am getting the error " invalid declarator before 'ci_string" . How to solve this? struct ci_char_traits:public char_traits<char> { ...
0
votes
5answers
305 views

user input ignore case

I am reading a user input. I was wondering how I would apply equalsIgnoreCase to the user input? ArrayList<String> aListColors = new ArrayList<String>(); aListColors.add("Red"); ...
0
votes
1answer
164 views

Convert std::basic_string to NSString in Objective-C / Cocoa

How do I convert a std::basic_string to a NSString ?