摘要: #if 1 #include #include using namespace std; class List { public: //默认构造函数集合大小为6个元素 List(); //构造函数重载,可接受参数,改变集合大小 List(int size); //析构函数释放str, ~List() { delete []str; } //打印数据 voi... 阅读全文
posted @ 2019-03-20 13:20 学之初 阅读(1194) 评论(0) 推荐(0) 编辑