Search Results

2
votes

How do you add an int to a string in C++?

cout << text << i; (The << operator for ostream returns a reference to the ostream, so you can just keep chaining the << operations. That is, the above is basically the sam …
0
votes

What are the differences between Visual C++ 6.0 and Visual C++ 2008?

Did you know that MS VC6's implementation of the STL isn't thread-safe? In particular, the reference counting optimization in basic_string blows up even when compiled with the multi-threaded libra …
1
vote

Embed data in a C++ program

It's slightly ugly, but you can always use something like: const char *query_foo = #include "query_foo.txt" const char *query_bar = #include "query_bar.txt" Where query_foo.tx …
9
votes

Is list::size() really O(n)?

I've had to look into gcc 3.4's list::size before, so I can say this: it uses std::distance(head, tail) std::distance has two implementations: for types that satisfy RandomAc …
2
votes

How do you structure unit tests for cross-compiled code?

In ten-plus years in the embedded industry, I've seen it done quite a few ways. At my current company: one of our products has enough horsepower (and space) to run tests on the targe …