随笔 - 6
文章 - 0
评论 - 0
阅读 -
54
12 2024 档案
实验6 模板类、文件I/O和异常处理
摘要:任务一: Complex.hpp #pragma once #include <iostream> #include <stdexcept> // 声明 //////////////////////////////////////////////////// // 复数模板类声明 template<
阅读全文
实验5 继承和多态
摘要:任务一: publisher.hpp #pragma once #include <iostream> #include <string> using std::cout; using std::endl; using std::string; // 发行/出版物类:Publisher (抽象类)
阅读全文