摘要:
实验任务三 task3.cpp #include <iostream> #include <vector> #include "pets.hpp" void test() { using namespace std; vector<MachinePets *> pets; pets.push_bac 阅读全文
摘要:
实验任务一 task1_1.cpp 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 displa 阅读全文
摘要:
实验任务一 源代码t.h: #pragma once #include <string> // 类T: 声明 class T { // 对象属性、方法 public: T(int x = 0, int y = 0); // 普通构造函数 T(const T &t); // 复制构造函数 T(T && 阅读全文
摘要:
一、实验目的 体验现代C++标准库、算法库用法 灵活组合使用现代C++基础语言特性(数据表示、分支、循环、函数)和标准库,编程解决简单、 基础问题 编程代码过程中,注意编码素养。关注代码表达,提升代码的可读性、易于维护性 二、实验准备 系统浏览教材以下章节,对现代c++基础语言特性和用法构建全局认知 阅读全文