实验3
任务1:
源代码:
1 #include "window.hpp" 2 #include <iostream> 3 4 void test(){ 5 Window w("Demo"); 6 w.add_button("add"); 7 w.add_button("remove"); 8 w.add_button("modify"); 9 w.add_button("add"); 10 w.display(); 11 w.close(); 12 } 13 14 int main() { 15 std::cout << "用组合类模拟简单GUI:\n"; 16 test(); 17 }
1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 class Button { 7 public: 8 Button(const std::string &label_); 9 const std::string& get_label() const; 10 void click(); 11 12 private: 13 std::string label; 14 }; 15 16 Button::Button(const std::string &label_): label{label_} { 17 } 18 19 inline const std::string& Button::get_label() const { 20 return label; 21 } 22 23 inline void Button::click() { 24 std::cout << "Button '" << label << "' clicked\n"; 25 }
1 #pragma once 2 3 #include <iostream> 4 #include <vector> 5 #include <algorithm> 6 #include "button.hpp" 7 8 // 窗口类 9 class Window{ 10 public: 11 Window(const std::string &title_); 12 void display() const; 13 void close(); 14 void add_button(const std::string &label); 15 void click_button(const std::string &label); 16 17 private: 18 bool has_button(const std::string &label) const; 19 20 private: 21 std::string title; 22 std::vector<Button> buttons; 23 }; 24 25 Window::Window(const std::string &title_): title{title_} { 26 buttons.push_back(Button("close")); 27 } 28 29 inline void Window::display() const { 30 std::string s(40, '*'); 31 std::cout << s << std::endl; 32 std::cout << "window : " << title << std::endl; 33 int cnt = 0; 34 for(const auto &button: buttons) 35 std::cout << ++cnt << ". " << button.get_label() << std::endl; 36 std::cout << s << std::endl; 37 } 38 39 inline void Window::close() { 40 std::cout << "close window '" << title << "'" << std::endl; 41 click_button("close"); 42 } 43 44 inline bool Window::has_button(const std::string &label) const { 45 for(const auto &button: buttons) 46 if(button.get_label() == label) 47 return true; 48 49 return false; 50 } 51 52 inline void Window::add_button(const std::string &label) { 53 if(has_button(label)) 54 std::cout << "button " << label << " already exists!\n"; 55 else 56 buttons.push_back(Button(label)); 57 } 58 59 inline void Window::click_button(const std::string &label) { 60 for(auto &button:buttons) 61 if(button.get_label() == label) { 62 button.click(); 63 return; 64 } 65 66 std::cout << "no button: " << label << std::endl; 67 }
截图:

Q1:是组合关系。Button 的创建和销毁均由 Window 控制。
Q2:
(1)允许外部代码直接查询窗口中是否存在某个按钮,增加了类的灵活性。同时暴露了类的内部实现细节,降低了封装性。
(2)仅用于类内部协作的函数应设为private,避免暴露实现细节。若函数是类对外提供的核心功能,需设为 public。
Q3:接口1不复制字符串,仅返回引用,效率高由于返回 const 引用,外部无法修改内部字符串,安全性有保障;
接口2返回字符串副本,会触发拷贝构造函数,性能较低,返回副本,外部修改副本不影响内部状态,安全性更高。
Q4:修改后程序可正常运行。两种写法均能向容器中添加 Button 对象,最终功能一致。
push_back(Button(xxx))先通过 Button(xxx) 显式构造一个临时 Button 对象,再调用 vector 的 push_back,将临时对象拷贝或移动到容器中;
emplace_back(xxx)直接在 vector 的内存空间中原地构造 Button 对象,仅调用一次 Button 的构造函数(参数为 xxx),无需创建临时对象和拷贝 / 移动操作,效率更高
任务2:
源代码:
1 #include <iostream> 2 #include <vector> 3 4 void test1(); 5 void test2(); 6 void output1(const std::vector<int> &v); 7 void output2(const std::vector<int> &v); 8 void output3(const std::vector<std::vector<int>>& v); 9 10 int main() { 11 std::cout << "深复制验证1: 标准库vector<int>\n"; 12 test1(); 13 14 std::cout << "\n深复制验证2: 标准库vector<int>嵌套使用\n"; 15 test2(); 16 } 17 18 void test1() { 19 std::vector<int> v1(5, 42); 20 const std::vector<int> v2(v1); 21 22 std::cout << "**********拷贝构造后**********\n"; 23 std::cout << "v1: "; output1(v1); 24 std::cout << "v2: "; output1(v2); 25 26 v1.at(0) = -1; 27 28 std::cout << "**********修改v1[0]后**********\n"; 29 std::cout << "v1: "; output1(v1); 30 std::cout << "v2: "; output1(v2); 31 } 32 33 void test2() { 34 std::vector<std::vector<int>> v1{{1, 2, 3}, {4, 5, 6, 7}}; 35 const std::vector<std::vector<int>> v2(v1); 36 37 std::cout << "**********拷贝构造后**********\n"; 38 std::cout << "v1: "; output3(v1); 39 std::cout << "v2: "; output3(v2); 40 41 v1.at(0).push_back(-1); 42 43 std::cout << "**********修改v1[0]后**********\n"; 44 std::cout << "v1: \n"; output3(v1); 45 std::cout << "v2: \n"; output3(v2); 46 } 47 48 // 使用xx.at()+循环输出vector<int>数据项 49 void output1(const std::vector<int> &v) { 50 if(v.size() == 0) { 51 std::cout << '\n'; 52 return; 53 } 54 55 std::cout << v.at(0); 56 for(auto i = 1; i < v.size(); ++i) 57 std::cout << ", " << v.at(i); 58 std::cout << '\n'; 59 } 60 61 // 使用迭代器+循环输出vector<int>数据项 62 void output2(const std::vector<int> &v) { 63 if(v.size() == 0) { 64 std::cout << '\n'; 65 return; 66 } 67 68 auto it = v.begin(); 69 std::cout << *it; 70 71 for(it = v.begin()+1; it != v.end(); ++it) 72 std::cout << ", " << *it; 73 std::cout << '\n'; 74 } 75 76 // 使用auto for分行输出vector<vector<int>>数据项 77 void output3(const std::vector<std::vector<int>>& v) { 78 if(v.size() == 0) { 79 std::cout << '\n'; 80 return; 81 } 82 83 for(auto &i: v) 84 output2(i); 85 }
截图:

Q1:td::vector<int> v1(5, 42); 调用了带两个参数的构造函数,用于初始化一个包含 5 个元素且每个元素值均为 42 的向量;const std::vector<int> v2(v1); 调用了复制构造函数,通过拷贝 v1 的内容创建 v2。v1 和 v2 均包含 5 个值为 42 的数据项。
Q2:2,2,3
Q3:能实现同等效果。区别在于:at()会进行边界检查,若索引越界会抛出out_of_range异常;[]不进行边界检查,访问效率更高,但索引越界时会导致未定义行为。
Q4:
(1)能输出 - 1。因为v1.at(0)返回 v1 第一个内层向量的引用,push_back(-1)已将该内层向量的末尾添加 - 1,r作为该内层向量的引用,r.size()-1指向末尾元素,通过r.at(r.size()-1)可正确访问到 - 1;
(2)const &类型接收返回值的内存优势是无需拷贝原向量元素,仅建立引用关联,节省内存开销且避免拷贝带来的性能损耗;限制是通过该引用无法修改所指向的向量内容,只能进行读取等操作。
Q5:
(1)深复制
(2)当 v 是vector<int>时,v.at(0)返回值类型是int&;当 v 是const vector<int>时,v.at(0)返回值类型是const int&;据此可推断at()必须提供带 const 修饰的重载版本。
任务3:
源代码:
1 #pragma once 2 3 #include <iostream> 4 5 // 动态int数组对象类 6 class vectorInt{ 7 public: 8 vectorInt(); 9 vectorInt(int n_); 10 vectorInt(int n_, int value); 11 vectorInt(const vectorInt &vi); 12 ~vectorInt(); 13 14 int size() const; 15 int& at(int index); 16 const int& at(int index) const; 17 vectorInt& assign(const vectorInt &vi); 18 19 int* begin(); 20 int* end(); 21 const int* begin() const; 22 const int* end() const; 23 24 private: 25 int n; // 当前数据项个数 26 int *ptr; // 数据区 27 }; 28 29 vectorInt::vectorInt():n{0}, ptr{nullptr} { 30 } 31 32 vectorInt::vectorInt(int n_): n{n_}, ptr{new int[n]} { 33 } 34 35 vectorInt::vectorInt(int n_, int value): n{n_}, ptr{new int[n_]} { 36 for(auto i = 0; i < n; ++i) 37 ptr[i] = value; 38 } 39 40 vectorInt::vectorInt(const vectorInt &vi): n{vi.n}, ptr{new int[n]} { 41 for(auto i = 0; i < n; ++i) 42 ptr[i] = vi.ptr[i]; 43 } 44 45 vectorInt::~vectorInt() { 46 delete [] ptr; 47 } 48 49 int vectorInt::size() const { 50 return n; 51 } 52 53 const int& vectorInt::at(int index) const { 54 if(index < 0 || index >= n) { 55 std::cerr << "IndexError: index out of range\n"; 56 std::exit(1); 57 } 58 59 return ptr[index]; 60 } 61 62 int& vectorInt::at(int index) { 63 if(index < 0 || index >= n) { 64 std::cerr << "IndexError: index out of range\n"; 65 std::exit(1); 66 } 67 68 return ptr[index]; 69 } 70 71 vectorInt& vectorInt::assign(const vectorInt &vi) { 72 if(this == &vi) 73 return *this; 74 75 int *ptr_tmp; 76 ptr_tmp = new int[vi.n]; 77 for(int i = 0; i < vi.n; ++i) 78 ptr_tmp[i] = vi.ptr[i]; 79 80 delete[] ptr; 81 n = vi.n; 82 ptr = ptr_tmp; 83 return *this; 84 } 85 86 int* vectorInt::begin() { 87 return ptr; 88 } 89 90 int* vectorInt::end() { 91 return ptr+n; 92 } 93 94 const int* vectorInt::begin() const { 95 return ptr; 96 } 97 98 const int* vectorInt::end() const { 99 return ptr+n; 100 }
1 #include "vectorInt.hpp" 2 #include <iostream> 3 4 void test1(); 5 void test2(); 6 void output1(const vectorInt &vi); 7 void output2(const vectorInt &vi); 8 9 int main() { 10 std::cout << "测试1: \n"; 11 test1(); 12 13 std::cout << "\n测试2: \n"; 14 test2(); 15 } 16 17 void test1() { 18 int n; 19 std::cout << "Enter n: "; 20 std::cin >> n; 21 22 vectorInt x1(n); 23 for(auto i = 0; i < n; ++i) 24 x1.at(i) = (i+1)*10; 25 std::cout << "x1: "; output1(x1); 26 27 vectorInt x2(n, 42); 28 vectorInt x3(x2); 29 x2.at(0) = -1; 30 std::cout << "x2: "; output1(x2); 31 std::cout << "x3: "; output1(x3); 32 } 33 34 void test2() { 35 const vectorInt x(5, 42); 36 vectorInt y; 37 38 y.assign(x); 39 40 std::cout << "x: "; output2(x); 41 std::cout << "y: "; output2(y); 42 } 43 44 // 使用xx.at()+循环输出vectorInt对象数据项 45 void output1(const vectorInt &vi) { 46 if(vi.size() == 0) { 47 std::cout << '\n'; 48 return; 49 } 50 51 std::cout << vi.at(0); 52 for(auto i = 1; i < vi.size(); ++i) 53 std::cout << ", " << vi.at(i); 54 std::cout << '\n'; 55 } 56 57 // 使用迭代器+循环输出vectorInt对象数据项 58 void output2(const vectorInt &vi) { 59 if(vi.size() == 0) { 60 std::cout << '\n'; 61 return; 62 } 63 64 auto it = vi.begin(); 65 std::cout << *it; 66 67 for(it = vi.begin()+1; it != vi.end(); ++it) 68 std::cout << ", " << *it; 69 std::cout << '\n'; 70 }
截图:

Q1:当对象自我赋值时,代码会直接删除ptr指向的内存。
如果new失败,对象原有的ptr已被删除,但n还未更新,对象处于破坏状态。
Q2:
(1)static_cast<const vectorInt*>(this)将非const的this指针转换为const版本,以调用const重载的at函数,避免代码重复。
(2)const_cast<int&>则用于移除const限定符,将const版本返回的const int&转换为非const的int&,使非const版本的at能返回可修改的引用。这种设计遵循了"const优先"原则,将核心逻辑置于const函数中,非const函数通过类型转换复用其实现。
Q3:
(1)对于非const对象调用begin()时,编译器会选择返回int*的非const重载版本,允许通过迭代器修改元素;而对于const对象,则选择返回const int*的const版本,确保元素不可被修改。
(2)对于连续内存容器,指针本身已满足迭代器的所有操作要求,无需额外封装。
Q4:使用std::fill_n和std::copy_n替代手动循环的改写是可行且更优的。std::fill_n直接表达"填充n个相同值"的语义,比显式循环更简洁;std::copy_n则明确表达数据复制操作,可读性更强。
任务4:
源代码:
1 #pragma once 2 3 #include <iostream> 4 #include <algorithm> 5 #include <cstdlib> 6 7 // 类Matrix声明 8 class Matrix { 9 public: 10 Matrix(int rows_, int cols_, double value = 0); // 构造rows_*cols_矩阵对象, 初值value 11 Matrix(int rows_, double value = 0); // 构造rows_*rows_方阵对象, 初值value 12 Matrix(const Matrix &x); // 深复制 13 ~Matrix(); 14 15 void set(const double *pvalue, int size); // 按行复制pvalue指向的数据,要求size=rows*cols,否则报错退出 16 void clear(); // 矩阵对象数据项置0 17 18 const double& at(int i, int j) const; // 返回矩阵对象索引(i,j)对应的数据项const引用(越界则报错后退出) 19 double& at(int i, int j); // 返回矩阵对象索引(i,j)对应的数据项引用(越界则报错后退出) 20 21 int rows() const; // 返回矩阵对象行数 22 int cols() const; // 返回矩阵对象列数 23 24 void print() const; // 按行打印数据 25 26 private: 27 int n_rows; // 矩阵对象内元素行数 28 int n_cols; // 矩阵对象内元素列数 29 double *ptr; // 数据区 30 };
1 #include <iostream> 2 #include <cstdlib> 3 #include <algorithm> 4 #include "matrix.hpp" 5 6 // 构造rows_*cols_矩阵对象, 初值value 7 Matrix::Matrix(int rows_, int cols_, double value) : n_rows(rows_), n_cols(cols_) { 8 if (n_rows <= 0 || n_cols <= 0) { 9 std::cerr << "非法行列数\n"; 10 exit(1); 11 } 12 13 ptr = new double[n_rows * n_cols]; 14 std::fill(ptr, ptr + n_rows * n_cols, value); 15 } 16 17 // 构造函数:rows_ * rows_ 方阵,初始值为value 18 Matrix::Matrix(int rows_, double value) : n_rows(rows_), n_cols(rows_) { 19 if (n_rows <= 0) { 20 std::cerr << "非法行列数\n"; 21 exit(1); 22 } 23 24 ptr = new double[n_rows * n_cols]; 25 std::fill(ptr, ptr + n_rows * n_cols, value); 26 } 27 28 // 拷贝构造函数(深拷贝) 29 Matrix::Matrix(const Matrix &x) : n_rows(x.n_rows), n_cols(x.n_cols) { 30 ptr = new double[n_rows * n_cols]; 31 std::copy(x.ptr, x.ptr + n_rows * n_cols, ptr); 32 } 33 34 // 析构函数 35 Matrix::~Matrix() { 36 delete[] ptr; 37 } 38 39 // 设置矩阵值,按行优先顺序 40 void Matrix::set(const double *pvalue, int size) { 41 if (size != n_rows * n_cols) { 42 std::cerr << "size不匹配\n"; 43 exit(1); 44 } 45 46 std::copy(pvalue, pvalue + size, ptr); 47 } 48 49 // 清空矩阵(所有元素设为0) 50 void Matrix::clear() { 51 std::fill(ptr, ptr + n_rows * n_cols, 0.0); 52 } 53 54 // 常量版本的元素访问(带边界检查) 55 const double& Matrix::at(int i, int j) const { 56 if (i < 0 || i >= n_rows || j < 0 || j >= n_cols) { 57 std::cerr << "溢出边界\n"; 58 exit(1); 59 } 60 return ptr[i * n_cols + j]; 61 } 62 63 // 非常量版本的元素访问(带边界检查) 64 double& Matrix::at(int i, int j) { 65 if (i < 0 || i >= n_rows || j < 0 || j >= n_cols) { 66 std::cerr << "溢出边界\n"; 67 exit(1); 68 } 69 return ptr[i * n_cols + j]; 70 } 71 72 // 返回行数 73 int Matrix::rows() const { 74 return n_rows; 75 } 76 77 // 返回列数 78 int Matrix::cols() const { 79 return n_cols; 80 } 81 82 // 打印矩阵(按行打印) 83 void Matrix::print() const { 84 for (int i = 0; i < n_rows; ++i) { 85 std::cout << at(i, 0); 86 for (int j = 1; j < n_cols; ++j) { 87 std::cout << ", " << at(i, j); 88 } 89 std::cout << '\n'; 90 } 91 } 92 93 void test1(); 94 void test2(); 95 void output(const Matrix &m, int row_index); 96 97 int main() { 98 std::cout << "测试1: \n"; 99 test1(); 100 101 std::cout << "\n测试2: \n"; 102 test2(); 103 } 104 105 void test1() { 106 double x[1000] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; 107 108 int n, m; 109 std::cout << "Enter n and m: "; 110 std::cin >> n >> m; 111 112 Matrix m1(n, m); // 创建矩阵对象m1, 大小n×m 113 m1.set(x, n*m); // 用一维数组x的值按行为矩阵m1赋值 114 115 Matrix m2(m, n); // 创建矩阵对象m2, 大小m×n 116 m2.set(x, m*n); // 用一维数组x的值按行为矩阵m1赋值 117 118 Matrix m3(n); // 创建一个n×n方阵对象 119 m3.set(x, n*n); // 用一维数组x的值按行为矩阵m3赋值 120 121 std::cout << "矩阵对象m1: \n"; m1.print(); 122 std::cout << "矩阵对象m2: \n"; m2.print(); 123 std::cout << "矩阵对象m3: \n"; m3.print(); 124 } 125 126 void test2() { 127 Matrix m1(2, 3, -1); 128 const Matrix m2(m1); 129 130 std::cout << "矩阵对象m1: \n"; m1.print(); 131 std::cout << "矩阵对象m2: \n"; m2.print(); 132 133 m1.clear(); 134 m1.at(0, 0) = 1; 135 136 std::cout << "m1更新后: \n"; 137 std::cout << "矩阵对象m1第0行 "; output(m1, 0); 138 std::cout << "矩阵对象m2第0行: "; output(m2, 0); 139 } 140 141 // 输出矩阵对象row_index行所有元素 142 void output(const Matrix &m, int row_index) { 143 if(row_index < 0 || row_index >= m.rows()) { 144 std::cerr << "IndexError: row index out of range\n"; 145 exit(1); 146 } 147 148 std::cout << m.at(row_index, 0); 149 for(int j = 1; j < m.cols(); ++j) 150 std::cout << ", " << m.at(row_index, j); 151 std::cout << '\n'; 152 }
截图:

任务5:
源代码:
1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 // 联系人类 7 class Contact { 8 public: 9 Contact(const std::string &name_, const std::string &phone_); 10 11 const std::string &get_name() const; 12 const std::string &get_phone() const; 13 void display() const; 14 15 private: 16 std::string name; // 必填项 17 std::string phone; // 必填项 18 }; 19 20 Contact::Contact(const std::string &name_, const std::string &phone_):name{name_}, phone{phone_} { 21 } 22 23 const std::string& Contact::get_name() const { 24 return name; 25 } 26 27 const std::string& Contact::get_phone() const { 28 return phone; 29 } 30 31 void Contact::display() const { 32 std::cout << name << ", " << phone; 33 }
1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 #include <vector> 6 #include <algorithm> 7 #include "contact.hpp" 8 9 // 通讯录类 10 class ContactBook { 11 public: 12 void add(const std::string &name, const std::string &phone); // 添加联系人 13 void remove(const std::string &name); // 移除联系人 14 void find(const std::string &name) const; // 查找联系人 15 void display() const; // 显示所有联系人 16 size_t size() const; 17 18 private: 19 int index(const std::string &name) const; // 返回联系人在contacts内索引,如不存在,返回-1 20 void sort(); // 按姓名字典序升序排序通讯录 21 22 private: 23 std::vector<Contact> contacts; 24 }; 25 26 void ContactBook::add(const std::string &name, const std::string &phone) { 27 if(index(name) == -1) { 28 contacts.push_back(Contact(name, phone)); 29 std::cout << name << " add successfully.\n"; 30 sort(); 31 return; 32 } 33 34 std::cout << name << " already exists. fail to add!\n"; 35 } 36 37 void ContactBook::remove(const std::string &name) { 38 int i = index(name); 39 40 if(i == -1) { 41 std::cout << name << " not found, fail to remove!\n"; 42 return; 43 } 44 45 contacts.erase(contacts.begin()+i); 46 std::cout << name << " remove successfully.\n"; 47 } 48 49 void ContactBook::find(const std::string &name) const { 50 int i = index(name); 51 52 if(i == -1) { 53 std::cout << name << " not found!\n"; 54 return; 55 } 56 57 contacts[i].display(); 58 std::cout << '\n'; 59 } 60 61 void ContactBook::display() const { 62 for(auto &c: contacts) { 63 c.display(); 64 std::cout << '\n'; 65 } 66 } 67 68 size_t ContactBook::size() const { 69 return contacts.size(); 70 } 71 72 // 待补足1:int index(const std::string &name) const;实现 73 // 返回联系人在contacts内索引; 如不存在,返回-1 74 int ContactBook::index(const std::string &name) const { 75 for (size_t i = 0; i < contacts.size(); ++i) { 76 if (contacts[i].get_name() == name) { 77 return static_cast<int>(i); 78 } 79 } 80 return -1; 81 } 82 83 84 // 待补足2:void ContactBook::sort();实现 85 // 按姓名字典序升序排序通讯录 86 void ContactBook::sort() { 87 std::sort(contacts.begin(), contacts.end(), 88 [](const Contact &a, const Contact &b) { 89 return a.get_name() < b.get_name(); 90 }); 91 }
1 #include "contactBook.hpp" 2 3 void test() { 4 ContactBook contactbook; 5 6 std::cout << "1. add contacts\n"; 7 contactbook.add("Bob", "18199357253"); 8 contactbook.add("Alice", "17300886371"); 9 contactbook.add("Linda", "18184538072"); 10 contactbook.add("Alice", "17300886371"); 11 12 std::cout << "\n2. display contacts\n"; 13 std::cout << "There are " << contactbook.size() << " contacts.\n"; 14 contactbook.display(); 15 16 std::cout << "\n3. find contacts\n"; 17 contactbook.find("Bob"); 18 contactbook.find("David"); 19 20 std::cout << "\n4. remove contact\n"; 21 contactbook.remove("Bob"); 22 contactbook.remove("David"); 23 } 24 25 int main() { 26 test(); 27 }
截图:

浙公网安备 33010602011771号