C++ virtual table 1
摘要:
To implement virtual functions, C++ uses a special form of late binding known as the virtual table. The virtual table is a lookup table of functions used to resolve function calls in a dynamic/late binding manner. The virtual table sometimes goes by other names, such as “vtable”, “virtual function.. 阅读全文
posted @ 2011-08-21 10:51 compilerTech 阅读(261) 评论(0) 推荐(0) 编辑