3
votes
How do I print the elements of a C++ vector in GDB?
'Watching' STL containers while debugging is somewhat of a problem. Here are 3 different solutions I have used in the past, none of them is perfect.
1) Use GDB scripts from …
5
votes
What’s the advantage of using C over C++ or is there one?
Portability has been mentioned before but it has not been stressed enough. Something written in C89 (ANSI 1989 Standard) is EXTREMELY PORTABLE, i …
0
votes
C++ Which is faster: Stack allocation or Heap allocation
It has been mentioned before that stack allocation is simply moving the stack pointer, that is, a single instruction on most architectures. Compare that to what generally happens in the ca …
0
votes
Eclipse C++ debugging breaks in STL
Given limited information, this is what comes to mind,
Step into (F5) instead of
stepping over (F6) to locate where
this is happening.
If this does
not work, upgrade CDT to …
1
vote
C++ best learning path: just utopia?
I would to point out, again, the new book by Bjarne Stroustrup, Programming: Principles and Practice Using C++, for …
2
votes
What are the often misunderstood concepts in C++?
I think the most misunderstood concept about C++ is why it exists and what its purpose is. Its often under fire from above (Java, C# etc.) and from below (C). C++ has the ability to operate close t …
1
vote
library for doing diffs
Here is a C++ library that can diff what the author calls semistructured data. It deals nicely with HTML and XML. Since your data is …
3
votes
C++ Parallelization Libraries: OpenMP vs. Thread Building Blocks
In general I have found that using TBB requires much more time consuming changes to the code base with a high payoff while OpenMP gives a quick but moderate payoff. If you are staring a new module …
1
vote
How can I make my own C++ compiler understand templates, nested classes, etc. strong features of C++?
I will like to stress a few points already mentioned and give a few references.
1) STICK TO THE 1989 ANSI C STANDARD WITH NO OPTIMIZATION.
2) Don't worry, with proper guidance, good …
1
vote
What would it take for people to move away from C++?
You are going about this the other way around. People choose problem/application domains they are interested in. The choice of language follows from that decision and is quite trivial.
Nobo …
85
votes
Why was Google’s Chrome browser written almost entirely in C++ and not C# or Java?
There are a number of reasons, which can be broadly classified as business reasons and technical reasons.
Lets start with the business reasons.
C# is an open, public stan …
1
vote
Is it acceptable for a C++ programmer to not know how null-terminated strings work?
Consider the coursework in any C/C++ based undergrad coursework. There has to be a data structures course s/he must have taken and this course must have had an assignment wherein they have to imple …
0
votes
Modern C++ Design Generic programming and Design Patterns Applied
I did experience some rude reactions from people when I stated using stuff from Modern C++ design. First, WTF comments. This was followed by 'don't try to be too smart' comments. Then, a better und …
1
vote
Best practices for a C++ portable opensource application
Here is a book to answer all your questions. Cross-Platform Development in C++: Building Mac OS X, Linux, and Windows Ap …
