std::basic_string is a template class in the C++ standard library that acts as a generic string whose underlying character type may be specialized.
0
votes
1answer
82 views
string pop_back function error
I am having a problem with modifying a string. I appreciate your assistance; thank you!
struct Drawings::menues
{
std::vector<std::string> variable;
} Menue[numMenues];
...
2
votes
0answers
2k views
How to Fix Visual Studio 2012 error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string?
How to fix a Visual Studio 2012 error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string?
I've been compiling a solution containing one exe and several static ...
10
votes
2answers
219 views
Why does `std::string` have a `find` member function? [closed]
Why does std::string have a find member function while std::vector and friends don't have it?
Is there anything wrong with using std::find on the string?
1
vote
3answers
110 views
Un-inherit from std::basic_string
Basically, I have a large project that uses a custom utility class c_string that inherits from std::basic_string<char>. For numerous reasons, I would like to edit this class so that
It does ...
3
votes
2answers
448 views
Using the less than comparison operator for strings
I'm following a tutorial for C++ and looking at strings and overloading with operators such as +=, ==, != etc, currently have a simple if statement
if(s1 < s2)
cout << s2 <<endl;
...
1
vote
1answer
84 views
Unit tests for basic_string equivalent
I am finishing development of a customized string class. It is, of course, intended to be equivalent to basic_string with the internal storage customized for its intended purpose. I am looking for a ...
0
votes
1answer
2k views
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::erase
string Farfallino::decode(string buff) {
string stringa;
size_t pos;
while(1) {
while(pos = (buff.find("afa"))) {
buff.erase(pos, 3);
buff.insert(pos, "a");
}
while(pos = ...
0
votes
3answers
152 views
How to get `std::basic_string<CustomClass>` to compile?
Ok, I'm usually all right at being able to read, understand and fix compiler errors. But with this one, I think I need help.
I want to have a std::basic_string<CustomClass> where CustomClass is ...
1
vote
1answer
167 views
boost::interprocess::map - how to update value with basic_string as type
I have the following codes:
typedef managed_shared_memory::segment_manager segment_manager_t;
typedef allocator<void, segment_manager_t> void_allocator;
typedef allocator<char, ...
0
votes
0answers
919 views
Issues with std::string in Android ndk-r7b with gnustl_static
I have a C++ project I am trying to build with ndk-build. As part of the debugging of the program, I am trying to use , and . As such, I have include APP_STL := gnustl_static in Application.mk.
When ...
1
vote
1answer
113 views
Is it possible to template basic_string<>::iterator? [duplicate]
Possible Duplicate:
Where and why do I have to put the “template” and “typename” keywords?
Im using g++4.6 and I tried to template my class based on the char type ...
0
votes
2answers
329 views
core dump in basic_string.tcc - optimized out
Occasionally I experience some core dumps which i can't figure out why they happen. Typically this happens when assigning av value to a string. Below is the backtrace for one of this cases. A core ...
2
votes
1answer
163 views
Does std::string find require that pos be less than string size
Just reading 21.3.6.1 basic_string::find - and there is no mention that the pos argument be within bounds of the string itself.
21.3.6.1 basic_string::find
size_type find(const ...
3
votes
2answers
580 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 ...
3
votes
1answer
8k 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 ...
3
votes
3answers
2k 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
2answers
279 views
C++ std::basic_string/char_traits specialization
This is related to:
std::basic_string specialization and
Circumventing template specialization
I tried the solution from std::basic_string specialization, but the problem is that CustomChar is a ...
1
vote
2answers
433 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
5answers
3k 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");
...
36
votes
1answer
3k 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
1answer
824 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 ...
0
votes
1answer
304 views
Convert std::basic_string to NSString in Objective-C / Cocoa
How do I convert a std::basic_string to a NSString ?
5
votes
3answers
1k 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 ...