Explore >> Select a destination


You are here

dreamrunner.org
| | hackingcpp.com
29.6 parsecs away

Travel
| | A short introduction to pointers in C++. Syntax, semantics, 'const' pointers, 'this' pointer, forward declarations and some guidelines.
| | www.modernescpp.com
42.0 parsecs away

Travel
| |
| | bartoszmilewski.com
12.8 parsecs away

Travel
| | The question that's been bugging me lately was: How does C++ make the use atomic variables both portable and efficient. I knew how Java volatile worked--it enforced sequential consistency, which is not always the most efficient thing to do. C++0x has atomic variables which also enforce sequential consistency when used in the default mode. Without...
| | blog.vanillajava.blog
70.8 parsecs away

Travel
| When working with Java collections, their ability to grow dynamically is often valuable. Yet, if you already know the required size, specify...