C/C++使用技巧1001例一书的配套代码

源代码在线查看: virt_one.cpp

软件大小: 71 K
上传用户: zjwbt
关键词: 1001 使用技巧 代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				
				class Base {
				 public:
				   virtual void show_message(void) { cout 				};
				
				class Derived: public Base {
				 public:
				   virtual void show_message(void) { cout 				};
				
				void main(void)
				 {
				   Base *base_pointer = new Base;
				   base_pointer->show_message();
				   
				   base_pointer = new Derived;
				   base_pointer->show_message();
				 }
				
							

相关资源