|
You are here |
dreamrunner.org | ||
| | | | |
hackingcpp.com
|
|
| | | | | A short introduction to pointers in C++. Syntax, semantics, 'const' pointers, 'this' pointer, forward declarations and some guidelines. | |
| | | | |
www.modernescpp.com
|
|
| | | | | ||
| | | | |
bartoszmilewski.com
|
|
| | | | | 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
|
|
| | | When working with Java collections, their ability to grow dynamically is often valuable. Yet, if you already know the required size, specify... | ||