c++ 之 编译期多态&运行期多态
摘要:
编译时多态:程序运行前发生的事件 —— 函数重载、运算符重载 、模板 ——静态绑定 运行时多态:程序运行时发生的事件 —— 虚函数机制——动态绑定 template<typename T> void doProcessing(T& w) { T temp(w); temp.go(); } 阅读全文
posted @ 2016-03-17 17:33 randy-g 阅读(188) 评论(0) 推荐(0) 编辑