摘要:
实验任务1-3: 验证性实验。无需写入实验博客文档。 已亲自动手实践。 实验任务4: 1 #pragma once 2 #include<iostream> 3 #include<stdexcept> 4 using namespace std; 5 template <typename T> 6 阅读全文
摘要:
实验任务1: 验证性实验,自行练习,无需写入实验博客文档。练习、理解此实验任务后,参照这个任务,完成实验任务3。 实验任务2: 验证性实验,自行练习,无需写入实验博客文档。练习、理解此实验任务后,参照这个任务,完成实验任务4。 实验任务3: 1 #pragma once 2 #include <io 阅读全文
摘要:
实验任务1: (验证性实验,自行练习,无需写入实验博客文档。) 实验任务2: 代码: 1 #include <iostream> 2 #include <vector> 3 #include <string> 4 #include <algorithm> 5 #include <numeric> 6 阅读全文
摘要:
实验任务1: 代码: 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 using std::string; 7 using std::cout; 8 9 // 按钮类 10 class Button { 11 public 阅读全文
摘要:
实验任务1: 1 #pragma once 2 #include <string> 3 4 class T { 5 public: 6 T(int x = 0, int y = 0); 7 T(const T &t); 8 T(T &&t); 9 ~T(); 10 11 void adjust(in 阅读全文
摘要:
实验任务1 代码: 1 // 现代C++标准库、算法库体验 2 // 本例用到以下内容: 3 // 1. 字符串string, 动态数组容器类vector、迭代器 4 // 2. 算法库:反转元素次序、旋转元素 5 // 3. 函数模板、const引用作为形参 6 7 #include<iostre 阅读全文