摘要: 1 #include 2 3 using namespace std; 4 5 class father 6 { 7 public: 8 father(int x):m_idata(x) 9 {} 10 11 virtual void show(int idata) 12 { 13 cout << "papa" <... 阅读全文
posted @ 2016-09-19 11:10 navas 阅读(312) 评论(0) 推荐(0) 编辑