Prototype (C++实现)
摘要:
// Prototype.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <iostream>using namespace std;class Prototype{public:Prototype(){cout<<"Construction of Prototype"<<endl;}virtual ~ Prototype(){cout<<"Destruction of Prototype"<<endl;}virtual P 阅读全文
posted @ 2011-05-22 18:42 IT@民工 阅读(177) 评论(0) 推荐(0) 编辑