2024年12月21日
摘要: 任务一: Complex.hpp #pragma once #include <iostream> #include <stdexcept> // 声明 //////////////////////////////////////////////////// // 复数模板类声明 template< 阅读全文
posted @ 2024-12-21 19:56 陆一鸣· 阅读(4) 评论(0) 推荐(0) 编辑
  2024年12月7日
摘要: 任务一: publisher.hpp #pragma once #include <iostream> #include <string> using std::cout; using std::endl; using std::string; // 发行/出版物类:Publisher (抽象类) 阅读全文
posted @ 2024-12-07 19:20 陆一鸣· 阅读(6) 评论(0) 推荐(0) 编辑
  2024年11月25日
摘要: 任务一: task1-1.cpp #include <iostream> using std::cout; using std::endl; // 类A的定义 class A { public: A(int x0, int y0); void display() const; private: in 阅读全文
posted @ 2024-11-25 09:17 陆一鸣· 阅读(2) 评论(0) 推荐(0) 编辑
  2024年11月10日
摘要: 任务一: button.hpp: #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const str 阅读全文
posted @ 2024-11-10 19:56 陆一鸣· 阅读(4) 评论(0) 推荐(0) 编辑
  2024年10月27日
摘要: 任务1: t.h #pragma once #include <string> class T { public: T(int x = 0, int y = 0); T(const T &t); T(T &&t); ~T(); void adjust(int ratio); void display 阅读全文
posted @ 2024-10-27 22:57 陆一鸣· 阅读(6) 评论(0) 推荐(0) 编辑
  2024年10月13日
摘要: 任务一: #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; template<typename T> void output(const T &c); v 阅读全文
posted @ 2024-10-13 22:18 陆一鸣· 阅读(11) 评论(0) 推荐(0) 编辑