摘要: 1. 实验任务1 button.hpp 1 #pragma once 2 #include <iostream> 3 #include <string> 4 using std::string; 5 using std::cout; 6 // 按钮类 7 class Button { 8 publi 阅读全文
posted @ 2024-11-05 16:43 Mikuuuu 阅读(10) 评论(1) 推荐(1) 编辑
摘要: 1. 实验任务1 分别给出t.h, t.cpp, task1.cpp源码,以及,运行测试结果截图 t.h 1 //t.h内容为类T的申明,友元函数的声明 2 3 #pragma once 4 5 #include <string> 6 7 class T { 8 9 public: 10 T(int 阅读全文
posted @ 2024-10-24 19:40 Mikuuuu 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 实验1 现代C++编程初体验 task1: 1 // 现代C++标准库、算法库体验 2 // 本例用到以下内容: 3 // 1. 字符串string, 动态数组容器类vector、迭代器 4 // 2. 算法库:反转元素次序、旋转元素 5 // 3. 函数模板、const引用作为形参 6 #incl 阅读全文
posted @ 2024-10-12 17:56 Mikuuuu 阅读(6) 评论(0) 推荐(0) 编辑