• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






karis

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2024年12月20日

实验6
摘要: task1: Complex.hpp #pragma once #include <iostream> #include <stdexcept> // 声明 //////////////////////////////////////////////////// // 复数模板类声明 templat 阅读全文
posted @ 2024-12-20 17:09 Karis_thy 阅读(8) 评论(0) 推荐(0)
 

2024年12月5日

实验五
摘要: task1: publisher.hpp #pragma once #include<iostream> #include<string> using std::cout; using std::endl; using std::string; // 发行/出版物类:Publisher (抽象类) 阅读全文
posted @ 2024-12-05 17:13 Karis_thy 阅读(14) 评论(0) 推荐(0)
 

2024年11月24日

实验四
摘要: Task1: GradeCalc.hpp #include <iostream> #include <vector> #include <string> #include <algorithm> #include <numeric> #include <iomanip> using std::vec 阅读全文
posted @ 2024-11-24 21:52 Karis_thy 阅读(30) 评论(0) 推荐(0)
 

2024年11月10日

实验3
摘要: Test1: #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const string &text) 阅读全文
posted @ 2024-11-10 21:18 Karis_thy 阅读(35) 评论(0) 推荐(0)
 

2024年10月28日

实验2(3)
摘要: Task1: #pragma once #include <string> // 类T: 声明 class T { // 对象属性、方法 public: T(int x = 0, int y = 0); // 普通构造函数 T(const T &t); // 复制构造函数 T(T &&t); ~T( 阅读全文
posted @ 2024-10-28 18:50 Karis_thy 阅读(15) 评论(0) 推荐(0)
 

2024年10月27日

实验1
摘要: Task1: // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> #include <st 阅读全文
posted @ 2024-10-27 17:17 Karis_thy 阅读(16) 评论(0) 推荐(0)
 
实验2(2)
摘要: Task1: //t.h pragma once include // 类T: 声明 class T { // 对象属性、方法 public: T(int x = 0, int y = 0); // 普通构造函数 T(const T &t); // 复制构造函数 T(T &&t); ~T(); // 阅读全文
posted @ 2024-10-27 16:54 Karis_thy 阅读(32) 评论(0) 推荐(0)
 
实验2
摘要: Task1: //t.h pragma once include // 类T: 声明 class T { // 对象属性、方法 public: T(int x = 0, int y = 0); // 普通构造函数 T(const T &t); // 复制构造函数 T(T &&t); ~T(); // 阅读全文
posted @ 2024-10-27 16:40 Karis_thy 阅读(13) 评论(0) 推荐(0)
 

2024年10月15日

实验1
摘要: task1: include include include include using namespace std; // 声明 // 模板函数声明 template void output(const T &c); // 普通函数声明 void test1(); void test2(); vo 阅读全文
posted @ 2024-10-15 22:26 Karis_thy 阅读(17) 评论(0) 推荐(0)