I'm a developer at C++ Shanghai team. I'm interested in everything related to C++
October 2008 - Posts
-
As the designer of base class, you may hesitate whether to use private or protect access control. Then, let's try the following examples: 1. Call protected member function #include <cstdio> class A { protected : void b() {printf( "Oops!\n" );} }; Read More...
|
-
IDA Pro is the world-class disassembler. It's a very useful reverse engineering tool. Now the demo of the newest version 5.3 is available: IDA Pro 5.3 demo download You can also try the freeware version (a little out of date): IDA Pro 4.9 Freeware Read More...
|