摘要: 实验任务4: #pragma once #include <iostream> #include <stdexcept> using namespace std; template<typename T> class Vector { public: Vector(int n,T value=0); 阅读全文
posted @ 2024-12-18 17:31 nightlight 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 实验任务1: 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 using std::cout; 7 using std::endl; 8 using std::string; 9 10 // 发行/出版物类:Publish 阅读全文
posted @ 2024-12-06 16:49 nightlight 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 实验任务一: 1 #include <iostream> 2 3 using std::cout; 4 using std::endl; 5 6 // 类A的定义 7 class A { 8 public: 9 A(int x0, int y0); 10 void display() const; 阅读全文
posted @ 2024-11-24 00:43 nightlight 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 实验任务1: 1 #pragma once 2 #include <iostream> 3 #include <string> 4 using std::string; 5 using std::cout; 6 7 // 按钮类 8 class Button { 9 public: 10 Butto 阅读全文
posted @ 2024-11-10 13:05 nightlight 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 实验任务一: 1 // 类T: 实现 2 // 普通函数实现 3 4 #include "t.h" 5 #include <iostream> 6 #include <string> 7 8 using std::cout; 9 using std::endl; 10 using std::stri 阅读全文
posted @ 2024-10-28 17:51 nightlight 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 任务一: 1 // 现代C++标准库、算法库体验 2 // 本例用到以下内容: 3 // 1. 字符串string, 动态数组容器类vector、迭代器 4 // 2. 算法库:反转元素次序、旋转元素 5 // 3. 函数模板、const引用作为形参 6 #include <iostream> 7 阅读全文
posted @ 2024-10-13 15:51 nightlight 阅读(10) 评论(0) 推荐(0) 编辑