知迩

12 2024 档案

实验6 模板类、文件I/O和异常处理
摘要:实验任务4 1 #ifndef VECTOR_HPP 2 #define VECTOR_HPP 3 4 #include <iostream> 5 #include <stdexcept> 6 7 template<typename T> 8 class Vector { 9 private: 10 阅读全文

posted @ 2024-12-21 16:52 知迩 阅读(5) 评论(0) 推荐(0) 编辑

实验5 继承和多态
摘要:实验任务3 1 #ifndef PETS_HPP 2 #define PETS_HPP 3 4 #include <string> 5 #include <iostream> 6 7 class MachinePets { 8 protected: 9 std::string nickname; 1 阅读全文

posted @ 2024-12-08 10:36 知迩 阅读(4) 评论(0) 推荐(0) 编辑

导航