Andrei's blog
sharing coding bits
Thursday, February 16, 2006
testing memory failure allocation
›
there is a difference of how the memorey failure is handled in C++. int *pa = new int[10000]; in the article " The new and delete Opera...
Wednesday, February 08, 2006
remember the rule
›
sometimes its hard to figure out which method is called when looking at a hierarchy of classes, which use virtual specifier for their method...
Tuesday, February 07, 2006
Final classes
›
i camed across a nice C++ question which shows the final class principle (as I read here: http://www.codeguru.com/Cpp/Cpp/cpp_mfc/stl/articl...
Friday, February 03, 2006
subtle difference when using const_cast
›
ive just read this article: http://www.devx.com/tips/Tip/5508 which shows the subtle difference (when is good \ bad) when using the const_c...
name hidding again
›
the name hidding seems to be pretty compiler specific unfortunately. for example: struct A { int x; }; struct B: A { int x; }; struct C: A, ...
the best C++ reference
›
i dont think there is a better reference on C++ then these: Effective & More Effective C++ C++ Programming Language C++ Faqs Effective S...
dominance
›
there is a thing called name dominance in C++. consider this: class A { public: int f() { printf("\nA::f()"); return 1; } }; class...
‹
›
Home
View web version