fgda logo for printout

Selected Articles

Topic: c

View all articles

 

A look at the D programming language

January 3, 2013 | 4 comments | Tags: c, d

The D programming language is an interesting alternative to C++ as being also natively compiled. Let us look at some of D constructs from a C++ perspective, to prove their usefulness. Then a few words will be said about the garbage collector in D, and why it's still considered a controversial feature.

GCC hash_map vs. unordered_map

August 30, 2011 | 7 comments | Tags: c

C++ evolves and wants you to switch to using unordered_map. Be aware though that this is not an exact substitute for hash_map! Const char* users are left behind unless they help themselves.