野百合也有春天

导航

2010年9月4日 #

在运行时确定对象的类型

摘要: #include "stdafx.h" #include #include using namespace std; class Base {}; class Derived : public Base {}; int main( ) { Base b, bb; Derived d; // Use typeid to test type equality if (typei... 阅读全文

posted @ 2010-09-04 13:35 flydream 阅读(226) 评论(0) 推荐(0) 编辑