February 2007 Archives

2007-02-11

C++ magic

If you ever thought, that you know C++ in complete, try to figure out, how one can have a lambda calculus, named parameters and static assertions in ISO C++.

For me the boost guys are magicians...


Posted by Alexander Bernauer | Permanent link | File under: C++

2007-02-11

C++ Reference Guide

IMO the definit C++ Reference Guide out there is this one.

Especially check out the outlook on the upcoming C++0x standard.


Posted by Alexander Bernauer | Permanent link | File under: C++

2007-02-08

Threads and memory model for C++

C++ does not know the notion of threads and this causes problems. Here Hans Böhm "describes an effort to clarify the meaning of multi-threaded C++ programs, and to provide some standard thread-related APIs where those are currently missing".

Posted by Alexander Bernauer | Permanent link | File under: C++

2007-02-08

Incompatibilities Between ISO C and ISO C++

C++ is a superset of C, right? No, regardless of which version one considers. Here David R. Tribble gives a short explanation about the different standards and lists a lot of incompatilitbities between those.

Posted by Alexander Bernauer | Permanent link | File under: C++

2007-02-05

C++ FAQ lite

I recommend reading the C++ FAQ lite. Besides many beginner's question this FAQ covers a lot of issues a C++ developer stumbles over sooner or later.

Posted by Alexander Bernauer | Permanent link | File under: C++