会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
CHENSHAOQIU
导航
博客园
首页
新随笔
联系
订阅
管理
公告
2024年12月24日
实验6 模版类、文件I/O和异常处理
摘要: 1. 实验任务4 Vector.hpp源代码 1 #pragma once 2 #include <iostream> 3 #include <stdexcept> 4 using namespace std; 5 6 template <typename T> 7 class Vector { 8
阅读全文
posted @ 2024-12-24 14:58 陈少秋
阅读(2)
评论(0)
推荐(0)
编辑
2024年12月9日
实验5 继承和多态
摘要: 实验任务三 源码如下: 1 #pragma once 2 #include<iostream> 3 #include<string> 4 using std::string; 5 using std::cout; 6 using std::endl; 7 class MachinePets { 8
阅读全文
posted @ 2024-12-09 12:17 陈少秋
阅读(3)
评论(0)
推荐(0)
编辑
2024年11月25日
实验4 类的组合、继承、模板类、标准库
摘要: 实验任务2: GradeCalc.hpp task2.cpp 运行测试截图: 问题1: 成绩存储位置:成绩存储在`GradeCalc`类的一个`vector<int>`成员变量中。由于`GradeCalc`是从`std::vector<int>`派生的,因此它可以使用`std::vector<int
阅读全文
posted @ 2024-11-25 15:40 陈少秋
阅读(6)
评论(0)
推荐(0)
编辑
2024年11月11日
实验3 类和对象_基础编程2
摘要: 实验任务1: 实验代码: button.hpp: #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(c
阅读全文
posted @ 2024-11-11 15:41 陈少秋
阅读(3)
评论(0)
推荐(0)
编辑
2024年10月16日
实验1 现代C++编程初体验
摘要: 实验任务1 task1.cpp: View Code 运行测试截图: 实验任务2 task2.cpp: View Code 运行测试截图: 实验任务3 task3.cpp: #include <iostream> #include <string> #include <algorithm> bool
阅读全文
posted @ 2024-10-16 00:43 陈少秋
阅读(11)
评论(0)
推荐(0)
编辑
2023年12月18日
实验6 模板类、文件I/O和异常处理
摘要: 实验任务4 1 #pragma once 2 #include <iostream> 3 #include <stdexcept> 4 5 template <class T> 6 class Vector { 7 private: 8 T* data; 9 size_t size; 10 11 p
阅读全文
posted @ 2023-12-18 01:22 陈少秋
阅读(13)
评论(0)
推荐(0)
编辑
2023年12月1日
实验4 现代C++标准库与类模板
摘要: 实验任务5: TextCoder.hpp文件源码: 1 #ifndef TEXTCODER_HPP 2 #define TEXTCODER_HPP 3 4 #include <string> 5 6 class TextCoder { 7 private: 8 std::string text; 9
阅读全文
posted @ 2023-12-01 01:51 陈少秋
阅读(4)
评论(0)
推荐(0)
编辑
2023年11月6日
实验3 类与数组、指针
摘要: 任务1: 1 #pragma once 2 3 #include <iostream> 4 using std::cout; 5 using std::endl; 6 7 class Point { 8 public: 9 Point(int x0 = 0, int y0 = 0); 10 ~Poi
阅读全文
posted @ 2023-11-06 03:56 陈少秋
阅读(6)
评论(0)
推荐(0)
编辑
2023年10月23日
类和对象_基础编程2
摘要: 任务三: 1 #ifndef T_HPP 2 #define T_HPP 3 4 #include <iostream> 5 #include <cmath> 6 7 class Complex { 8 private: 9 double real; // 实部 10 double imag; //
阅读全文
posted @ 2023-10-23 01:17 陈少秋
阅读(11)
评论(0)
推荐(0)
编辑
2023年10月19日
类和对象_基础编程1
摘要: 实验任务1 task1.cpp: 1 // 标准库string, vector, array基础用法 2 #include <iostream> 3 #include <string> 4 #include <vector> 5 #include <array> 6 // 函数模板 7 // 对满足
阅读全文
posted @ 2023-10-19 22:32 陈少秋
阅读(9)
评论(0)
推荐(0)
编辑