摘要:
Father.h: #pragma once #include <iostream> #include <string> using namespace std; class Father { public: Father(); Father(const string &name,int age); 阅读全文
摘要:
Hero.h: #pragma once #include <iostream> #include <string> #include <vector> #include <sstream> using namespace std; typedef enum gender { Man, //男 Wo 阅读全文