Andrei's blog
sharing coding bits
Showing posts with label
class
.
Show all posts
Showing posts with label
class
.
Show all posts
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
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, ...
dominance
›
there is a thing called name dominance in C++. consider this: class A { public: int f() { printf("\nA::f()"); return 1; } }; class...
public inheritance broken
›
consider this: class A { public: void f(); void f(int x); } class B : public A { public: void f(); // hides all A::f() overloads } you have ...
Tuesday, January 10, 2006
how vtable work
›
here is a nice article about how vtables work its good coz it goes into asm language and explains whats really goin on http://msdn.microsoft...
›
Home
View web version