0
votes
8answers
307 views
What if I dislike C++ Standard Library? [closed]
I am not accustomed to iostream,and think string is not easy to deal with.So is it possible to develop C++ programs without C++ Standard Library or at least with little use of C++ …
1
vote
4answers
107 views
C++ STD Cin error in while loop
Why when I entered the loop below and I type something the first instruction
cmdstd:getline(std::cin,cmdInput); does not read the input entered. For instance if I entered "b 8" it …
1
vote
3answers
64 views
foreach loops & stdclass objects
I've seen similar questions on here but I can't seem to apply the solutions to my problem. I have a variable called $results which I got from an API. I'll change the proper nouns …
4
votes
6answers
2k views
Does std::vector.clear() do delete (free memory) on each element?
Consider this code:
#include <vector>
void Example()
{
std::vector<TCHAR*> list;
TCHAR* pLine = new TCHAR[20];
list.push_back(pLine);
list.clear(); …
0
votes
8answers
283 views
c++ std vector - invalidated iterator question
I have a standard vector of pointers.
Under what circumstances might an iterator into this vector become invalidated?
I have reason to believe that when an object is deleted, any …
0
votes
2answers
55 views
Better way to determine length of a std::istream?
Is there a better way to determine the length of an std::istream than the following:
std::istream* pcStream = GetSomeStream();
pcStream->seekg(0, ios::end);
unsigned int uiLeng …
1
vote
2answers
92 views
How do you std::vector in XCode + C++?
For various reasons (and I assure you they are valid, so no "use Cocoa" talk please), I must work with XCode, C++, OpenGL, OpenCL (with a little GLUT on the side) to rebuild a few …
0
votes
2answers
145 views
std::map::iterator crashes program on increment
What could cause this?
Here's the stack trace:
#0 0x0645c0f5 in std::_Rb_tree_increment (__x=0x83ee5b0)
at ../../../../libstdc++-v3/src/tree.cc:69
#1 0x0805409a in std::_Rb …
1
vote
2answers
163 views
Performance penalty for using C++ vector instead of C array.
Is there a performance penalty for working with a vector from the standard library in C++ instead of arrays in C?
0
votes
2answers
124 views
Accessing a nested pair
To take apart a pair, the following can be done
boost::bind(&std::pair::second, _1); // returns the value of a pair
What about using combinations of different containers, ho …
1
vote
6answers
309 views
How is std::string implemented ?
I am curious to know how std::string is implemented and how does it differ from c string?If the standard does not specify any implementation then any implementation with explanatio …
2
votes
7answers
344 views
Thread safe C++ std::set that supports add, remove and iterators from multple threads
I'm looking for something similar to the CopyOnWriteSet in Java, a set that supports add, remove and some type of iterators from multiple threads.
14
votes
13answers
1k views
Why is ‘using namespace std;’ considered a bad practice in C++?
Okay, sorry for the simplistic question, but this has been bugging me ever since I finished high school C++ last year. I've been told by others on numerous occasions that my teache …
3
votes
2answers
385 views
Why is stringstreams rdbuf() and str() giving me different output?
I have this code,
int main()
{
std::string st;
std::stringstream ss;
ss<<"hej hej med dig"<<std::endl;
std::getline(ss,st,' ');
std::cout << …
8
votes
4answers
563 views
Is there a standard C++ function object for taking apart a std::pair?
Does anyone know if there's a de-facto standard (i.e., TR1 or Boost) C++ function object for accessing the elements of a std::pair? Twice in the past 24 hours I've wished I had so …
