Do your C++ reality check…

[April 19th, 2006]

Recently while having some discussions on a forum populated with very good C++ developers, I started to realize…

Many of them do not see the reality same as I do? Most of the discussions are blossoming simply because of reality checks that developers fail to do. Especially if they are in this IT industry where constant change is the name of the game.

A simple example: STL. Did discussion explode around the issue of using or not using the STL in the code? Yes. A drastic example of a reality check missing. Here is why:

  1. STL does not exist any more. At least two years.
  2. STL is replaced with stdlib : standard library for C++
  3. Standard C++ has stdlib at its core. It is based on stdlib.

Three points from the reality of C++ today. Have you done your C++ reality check, yet :)?

DBJ