首页 > 编程语言 >实验3 类和对象_基础编程2

实验3 类和对象_基础编程2

时间:2024-11-08 20:30:40浏览次数:1  
标签:std const string 对象 编程 int 实验 vectorInt include

实验任务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:
12     Button(const string &text);
13     string get_label() const;
14     void click();
15 
16 private:
17     string label;
18 };
19 
20 Button::Button(const string &text): label{text} {
21 }
22 
23 inline string Button::get_label() const {
24     return label;
25 }
26 
27 void Button::click() {
28     cout << "Button '" << label << "' clicked\n";
29 }
button.hpp
 1 #pragma once
 2 #include "button.hpp"
 3 #include <vector>
 4 #include <iostream>
 5 
 6 using std::vector;
 7 using std::cout;
 8 using std::endl;
 9 
10 // 窗口类
11 class Window{
12 public:
13     Window(const string &win_title);
14     void display() const;
15     void close();
16     void add_button(const string &label);
17 
18 private:
19     string title;
20     vector<Button> buttons;
21 };
22 
23 Window::Window(const string &win_title): title{win_title} {
24     buttons.push_back(Button("close"));
25 }
26 
27 inline void Window::display() const {
28     string s(40, '*');
29 
30     cout << s << endl;
31     cout << "window title: " << title << endl;
32     cout << "It has " << buttons.size() << " buttons: " << endl;
33     for(const auto &i: buttons)
34         cout << i.get_label() << " button" << endl;
35     cout << s << endl;
36 }
37 
38 void Window::close() {
39     cout << "close window '" << title << "'" << endl;
40     buttons.at(0).click();
41 }
42 
43 void Window::add_button(const string &label) {
44     buttons.push_back(Button(label));
45 }
window.hpp
 1 #include "window.hpp"
 2 #include <iostream>
 3 
 4 using std::cout;
 5 using std::cin;
 6 
 7 void test() {
 8     Window w1("new window");
 9     w1.add_button("maximize");
10     w1.display();
11     w1.close();
12 }
13 
14 int main() {
15     cout << "用组合类模拟简单GUI:\n";
16     test();
17 }
task1.cpp

结果截图

问题1:
自定义了几个类?
自定义了两个类:Button 和 Window。

使用到了标准库的哪几个类?
使用到了标准库的 string、vector、iostream。

哪些类和类之间存在组合关系?
Window 类中存在 vector<Button> 成员变量,所以 Window 和 Button 之间存在组合关系。

问题2:
Button 类:
Button::Button(const string &text):构造函数,不适合加 const,因为它是在初始化对象,且需要修改对象的成员变量。
string Button::get_label() const:已经加了 const,它不修改对象的状态,所以是正确的。
void Button::click():不适合加 const,因为它模拟了点击按钮的动作,可能会修改外部状态。
get_label 已经设置为 inline,这是合适的,因为它是一个简单的只读操作,且频繁调用。click 方法不适合设置为 inline,因为它涉及到输出操作,可能会使代码膨胀且不易调试。

Window 类:
Window::Window(const string &win_title):构造函数,不适合加 const,原因同上。
void Window::display() const:已经加了 const,原因同上。
void Window::close():不适合加 const,因为它修改了对象的状态。
void Window::add_button(const string &label):不适合加 const,因为它修改了对象的状态。
display 方法已经设置为 inline,这是合适的,因为它是一个简单的展示操作,且频繁调用。close 和 add_button 方法不适合设置为 inline,因为它们涉及到更多的逻辑和状态改变。


问题3:
类 Window 的定义中,有这样一行代码 string s(40, '*'),其功能是?
这行代码创建了一个包含40个字符 '*' 的字符串 s。它的功能是用于在显示窗口信息时,作为边框或分隔符,使输出更加美观和清晰。

 

实验任务2

 1 #include <iostream>
 2 #include <vector>
 3 
 4 using namespace std;
 5 
 6 void output1(const vector<int> &v) {
 7     for(auto &i: v)
 8         cout << i << ", ";
 9     cout << "\b\b \n";
10 }
11 
12 void output2(const vector<vector<int>> v) {
13     for(auto &i: v) {
14         for(auto &j: i)
15             cout << j << ", ";
16         cout << "\b\b \n";
17     }
18 }
19 
20 void test1() {
21     vector<int> v1(5, 42);
22     const vector<int> v2(v1);
23 
24     v1.at(0) = -999;
25     cout << "v1: ";  output1(v1);
26     cout << "v2: ";  output1(v2);
27     cout << "v1.at(0) = " << v1.at(0) << endl;
28     cout << "v2.at(0) = " << v2.at(0) << endl;
29 }
30 
31 void test2() {
32     vector<vector<int>> v1{{1, 2, 3}, {4, 5, 6, 7}};
33     const vector<vector<int>> v2(v1);
34 
35     v1.at(0).push_back(-999);
36     cout << "v1: \n";  output2(v1);
37     cout << "v2: \n";  output2(v2);
38 
39     vector<int> t1 = v1.at(0);
40     cout << t1.at(t1.size()-1) << endl;
41     
42     const vector<int> t2 = v2.at(0);
43     cout << t2.at(t2.size()-1) << endl;
44 }
45 
46 int main() {
47     cout << "测试1:\n";
48     test1();
49 
50     cout << "\n测试2:\n";
51     test2();
52 }
task2.cpp

结果截图

问题1:测试1模块中,这三行代码的功能分别是?
vector<int> v1(5, 42);
创建了一个名为 v1 的 vector<int> 对象,并初始化为包含5个元素,每个元素的值都是42。

const vector<int> v2(v1);
通过复制构造函数创建了一个名为 v2 的常量 vector<int> 对象,它是 v1 的一个副本。由于 v2 是常量,因此不能通过 v2 修改其包含的元素。

v1.at(0) = -999;
使用 at 方法访问 v1 的第一个元素(索引为0),并将其值修改为-999。at 方法提供了边界检查,如果索引超出范围,会抛出 std::out_of_range 异常。


问题2:测试2模块中,这三行代码的功能分别是?
vector<vector<int>> v1{{1, 2, 3}, {4, 5, 6, 7}};
创建了一个名为 v1 的 vector<vector<int>> 对象,并初始化为包含两个 vector<int> 元素,第一个元素是 {1, 2, 3},第二个元素是 {4, 5, 6, 7}。

const vector<vector<int>> v2(v1);
通过复制构造函数创建了一个名为 v2 的常量 vector<vector<int>> 对象,它是 v1 的一个副本。同样地,由于 v2 是常量,因此不能通过 v2 修改其包含的元素或子元素。

v1.at(0).push_back(-999);
这行代码首先使用 at 方法访问 v1 的第一个 vector<int> 元素(索引为0),然后调用该元素的 push_back 方法,在末尾添加一个新元素-999。这展示了 vector 的嵌套使用,以及如何通过 at 方法安全地访问和修改嵌套 vector 的内容。


问题3:测试2模块中,这四行代码的功能分别是?
vector<int> t1 = v1.at(0);
创建了一个名为 t1 的 vector<int> 对象,并将 v1 的第一个 vector<int> 元素(索引为0)复制给 t1。

cout << t1.at(t1.size()-1) << endl;
输出 t1 的最后一个元素的值。由于之前 v1.at(0).push_back(-999); 已经向 v1 的第一个元素添加了-999,因此这里输出的将是-999。

const vector<int> t2 = v2.at(0);
创建了一个名为 t2 的常量 vector<int> 对象,并将 v2 的第一个 vector<int> 元素(索引为0)复制给 t2。由于 t2 是常量,因此不能通过 t2 修改其包含的元素。

cout << t2.at(t2.size()-1) << endl;
输出 t2 的最后一个元素的值。由于 v2 是 v1 的一个常量副本,且 v1 的第一个元素在复制给 v2 后没有被修改(除了 v1 自身的修改,这些修改不会反映到 v2 上),因此这里输出的将是 v1 和 v2 在复制时第一个元素的最后一个值,即3(在 v1.at(0).push_back(-999); 执行之前 v1 和 v2 的第一个元素的最后一个值)。


问题4:根据执行结果,反向分析、推断:
① 标准库模板类 vector 内部封装的复制构造函数,其实现机制是深复制还是浅复制?
根据执行结果,特别是测试2模块中的行为,可以推断标准库模板类 vector 的复制构造函数实现的是深复制。在测试2中,修改 v1 的第一个元素(通过添加新元素)并没有影响 v2 的对应元素,这表明 v2 是 v1 的一个完全独立的副本,包括其包含的所有元素。

② 模板类 vector 的接口 at(), 是否至少需要提供一个 const 成员函数作为接口?
是,模板类 vector 的接口 at() 至少需要提供一个 const 成员函数版本。这是因为 const 成员函数允许在常量对象上调用,而不会破坏对象的常量性。在测试1和测试2中, at() 方法被用于常量 vector 对象(如 v2),这表明需要一个 const 版本的 at() 方法来支持这种用法。vector 的 at() 方法有两个版本:一个非 const 版本用于修改元素,一个 const 版本用于在常量对象上读取元素。

 

实验任务3

 1 #pragma once
 2 
 3 #include <iostream>
 4 #include <cassert>
 5 
 6 using std::cout;
 7 using std::endl;
 8 
 9 // 动态int数组对象类
10 class vectorInt{
11 public:
12     vectorInt(int n);
13     vectorInt(int n, int value);
14     vectorInt(const vectorInt &vi);
15     ~vectorInt();
16 
17     int& at(int index);
18     const int& at(int index) const;
19 
20     vectorInt& assign(const vectorInt &v);
21     int get_size() const;
22 
23 private:
24     int size;
25     int *ptr;       // ptr指向包含size个int的数组
26 };
27 
28 vectorInt::vectorInt(int n): size{n}, ptr{new int[size]} {
29 }
30 
31 vectorInt::vectorInt(int n, int value): size{n}, ptr{new int[size]} {
32     for(auto i = 0; i < size; ++i)
33         ptr[i] = value;
34 }
35 
36 vectorInt::vectorInt(const vectorInt &vi): size{vi.size}, ptr{new int[size]} {
37     for(auto i = 0; i < size; ++i)
38         ptr[i] = vi.ptr[i];
39 }
40 
41 vectorInt::~vectorInt() {
42     delete [] ptr;
43 }
44 
45 const int& vectorInt::at(int index) const {
46     assert(index >= 0 && index < size);
47 
48     return ptr[index];
49 }
50 
51 int& vectorInt::at(int index) {
52     assert(index >= 0 && index < size);
53 
54     return ptr[index];
55 }
56 
57 vectorInt& vectorInt::assign(const vectorInt &v) {  
58     delete[] ptr;       // 释放对象中ptr原来指向的资源
59 
60     size = v.size;
61     ptr = new int[size];
62 
63     for(int i = 0; i < size; ++i)
64         ptr[i] = v.ptr[i];
65 
66     return *this;
67 }
68 
69 int vectorInt::get_size() const {
70     return size;
71 }
vectorInt.hpp
 1 #include "vectorInt.hpp"
 2 #include <iostream>
 3 
 4 using std::cin;
 5 using std::cout;
 6 
 7 void output(const vectorInt &vi) {
 8     for(auto i = 0; i < vi.get_size(); ++i)
 9         cout << vi.at(i) << ", ";
10     cout << "\b\b \n";
11 }
12 
13 
14 void test1() {
15     int n;
16     cout << "Enter n: ";
17     cin >> n;
18 
19     vectorInt x1(n);
20     for(auto i = 0; i < n; ++i)
21         x1.at(i) = i*i;
22     cout << "x1: ";  output(x1);
23 
24     vectorInt x2(n, 42);
25     vectorInt x3(x2);
26     x2.at(0) = -999;
27     cout << "x2: ";  output(x2);
28     cout << "x3: ";  output(x3);
29 }
30 
31 void test2() {
32     const vectorInt  x(5, 42);
33     vectorInt y(10, 0);
34 
35     cout << "y: ";  output(y);
36     y.assign(x);
37     cout << "y: ";  output(y);
38     
39     cout << "x.at(0) = " << x.at(0) << endl;
40     cout << "y.at(0) = " << y.at(0) << endl;
41 }
42 
43 int main() {
44     cout << "测试1: \n";
45     test1();
46 
47     cout << "\n测试2: \n";
48     test2();
49 }
task3.cpp

结果截图

 

问题1:vectorInt类中,复制构造函数(line14)的实现,是深复制还是浅复制?
深复制。

问题2:vectorInt类中,这两个at()接口,如果返回值类型改成int而非int&(相应地,实现部分也同步修改),测试代码还能正确运行吗?
如果把line18返回值类型前面加const掉,针对这个测试代码,是否有潜在安全隐患?
不能正确运行。
具有安全隐患。

问题3:vectorInt类中,assign()接口,返回值类型可以改成vectorInt吗?你的结论,及,原因分析。
可以改成vectorInt。将assign()方法的返回值类型改为vectorInt并不会改变方法的实际功能。它仍然会释放当前对象占用的资源,并根据传入的vectorInt对象重新分配资源并复制内容。

 

实验任务4

 1 #pragma once
 2 
 3 #include <iostream>
 4 #include <cassert>
 5 
 6 using std::cout;
 7 using std::endl;
 8 
 9 // 类Matrix的声明
10 class Matrix {
11 public:
12     Matrix(int n, int m);           // 构造函数,构造一个n*m的矩阵, 初始值为value
13     Matrix(int n);                  // 构造函数,构造一个n*n的矩阵, 初始值为value
14     Matrix(const Matrix &x);        // 复制构造函数, 使用已有的矩阵X构造
15     ~Matrix();
16 
17     void set(const double *pvalue);         // 用pvalue指向的连续内存块数据按行为矩阵赋值
18     void clear();                           // 把矩阵对象的值置0
19     
20     const double& at(int i, int j) const;   // 返回矩阵对象索引(i,j)的元素const引用
21     double& at(int i, int j);               // 返回矩阵对象索引(i,j)的元素引用
22     
23     int get_lines() const;                  // 返回矩阵对象行数
24     int get_cols() const;                   // 返回矩阵对象列数
25 
26     void display() const;                    // 按行显示矩阵对象元素值
27 
28 private:
29     int lines;      // 矩阵对象内元素行数
30     int cols;       // 矩阵对象内元素列数
31     double *ptr;
32 };
33 
34 // 类Matrix的实现:待补足
35 // xxx
36 // 构造函数,构造一个n*m的矩阵  
37 Matrix::Matrix(int n, int m) : lines(n), cols(m), ptr(new double[n * m]) {  
38     clear(); // 初始化为0  
39 }  
40   
41 // 构造函数,构造一个n*n的矩阵  
42 Matrix::Matrix(int n) : Matrix(n, n) {  
43     // 调用另一个构造函数  
44 }  
45   
46 // 复制构造函数,使用已有的矩阵x构造  
47 Matrix::Matrix(const Matrix &x) : lines(x.lines), cols(x.cols), ptr(new double[x.lines * x.cols]) {  
48     std::copy(x.ptr, x.ptr + x.lines * x.cols, ptr);  
49 }  
50   
51 // 析构函数  
52 Matrix::~Matrix() {  
53     delete[] ptr;  
54 }  
55   
56 // 用pvalue指向的连续内存块数据按行为矩阵赋值  
57 void Matrix::set(const double *pvalue) {  
58     assert(pvalue != nullptr && "pvalue is nullptr");  
59     std::copy(pvalue, pvalue + lines * cols, ptr);  
60 }  
61   
62 // 把矩阵对象的值置0  
63 void Matrix::clear() {  
64     std::fill(ptr, ptr + lines * cols, 0.0);  
65 }  
66   
67 // 返回矩阵对象索引(i,j)的元素const引用  
68 const double& Matrix::at(int i, int j) const {  
69     assert(i >= 0 && i < lines && j >= 0 && j < cols && "Index out of bounds");  
70     return ptr[i * cols + j];  
71 }  
72   
73 // 返回矩阵对象索引(i,j)的元素引用  
74 double& Matrix::at(int i, int j) {  
75     assert(i >= 0 && i < lines && j >= 0 && j < cols && "Index out of bounds");  
76     return ptr[i * cols + j];  
77 }  
78   
79 // 返回矩阵对象行数  
80 int Matrix::get_lines() const {  
81     return lines;  
82 }  
83   
84 // 返回矩阵对象列数  
85 int Matrix::get_cols() const {  
86     return cols;  
87 }  
88   
89 // 按行显示矩阵对象元素值  
90 void Matrix::display() const {  
91     for (int i = 0; i < lines; ++i) {  
92         for (int j = 0; j < cols; ++j) {  
93             cout << at(i, j) << " ";  
94         }  
95         cout << endl;  
96     }  
97 } 
Matrix.hpp
 1 #include "matrix.hpp"
 2 #include <iostream>
 3 #include <cassert>
 4 
 5 using std::cin;
 6 using std::cout;
 7 using std::endl;
 8 
 9 
10 const int N = 1000;
11 
12 // 输出矩阵对象索引为index所在行的所有元素
13 void output(const Matrix &m, int index) {
14     assert(index >= 0 && index < m.get_lines());
15 
16     for(auto j = 0; j < m.get_cols(); ++j)
17         cout << m.at(index, j) << ", ";
18     cout << "\b\b \n";
19 }
20 
21 
22 void test1() {
23     double x[1000] = {7, 9, 3, 2, 6, 4, 1, 5, 8};
24 
25     int n, m;
26     cout << "Enter n and m: ";
27     cin >> n >> m;
28 
29     Matrix m1(n, m);    // 创建矩阵对象m1, 大小n×m
30     m1.set(x);          // 用一维数组x的值按行为矩阵m1赋值
31 
32     Matrix m2(m, n);    // 创建矩阵对象m1, 大小m×n
33     m2.set(x);          // 用一维数组x的值按行为矩阵m1赋值
34 
35     Matrix m3(2);       // 创建一个2×2矩阵对象
36     m3.set(x);          // 用一维数组x的值按行为矩阵m4赋值
37 
38     cout << "矩阵对象m1: \n";   m1.display();  cout << endl;
39     cout << "矩阵对象m2: \n";   m2.display();  cout << endl;
40     cout << "矩阵对象m3: \n";   m3.display();  cout << endl;
41 }
42 
43 void test2() {
44     Matrix m1(2, 3);
45     m1.clear();
46     
47     const Matrix m2(m1);
48     m1.at(0, 0) = -999;
49 
50     cout << "m1.at(0, 0) = " << m1.at(0, 0) << endl;
51     cout << "m2.at(0, 0) = " << m2.at(0, 0) << endl;
52     cout << "矩阵对象m1第0行: "; output(m1, 0);
53     cout << "矩阵对象m2第0行: "; output(m2, 0);
54 }
55 
56 int main() {
57     cout << "测试1: \n";
58     test1();
59 
60     cout << "测试2: \n";
61     test2();
62 }
task4.cpp

结果截图

 

 

实验任务5

 1 // user.hpp  
 2 #ifndef USER_HPP  
 3 #define USER_HPP  
 4   
 5 #include <string>  
 6 #include <iostream>  
 7 #include <limits>  
 8   
 9 class User {  
10 private:  
11     std::string name;  
12     std::string password;  
13     std::string email;  
14   
15     // 辅助函数,用于检查邮箱是否合法  
16     bool is_valid_email(const std::string& email) const {  
17         // 简单的邮箱验证逻辑,可以根据需要扩展  
18         return email.find('@') != std::string::npos && email.find('.') != std::string::npos;  
19     }  
20   
21 public:  
22     // 构造函数  
23     User(const std::string& name, const std::string& password = "123456", const std::string& email = "")  
24         : name(name), password(password), email(email) {}  
25   
26     // 设置邮箱的函数  
27     void set_email() {  
28         std::string input;  
29         while (true) {  
30             std::cout << "Enter email address: ";  
31             std::cin >> input;  
32   
33             // 清除可能存在的输入错误状态  
34             std::cin.clear();  
35             // 忽略之前的输入,包括换行符  
36             std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');  
37   
38             if (is_valid_email(input)) {  
39                 email = input;  
40                 std::cout << "email is set successfully... "<< std::endl; 
41                 break;  
42             } else {  
43                 std::cout << "illegal email. Please re-enter. "<< std::endl; 
44             }  
45         }  
46     }  
47   
48     // 修改密码的函数  
49     void change_password() {  
50         std::string old_password, new_password;  
51         int attempt = 0;  
52   
53         while (attempt < 3) {  
54             std::cout << "Enter old password: ";  
55             std::cin >> old_password;  
56             if (old_password == password) {  
57                 break;  
58             } else {  
59                 attempt++;  
60                 std::cout << "password input error. Please re-enter. " << std::endl;  
61             }  
62         }  
63   
64         if (attempt == 3) {  
65             std::cout << "password input error. Please try after a while." << std::endl;  
66             return;  
67         }  
68   
69         std::cout << "Enter new password: ";  
70         std::cin >> new_password;  
71         password = new_password;  
72         std::cout << "new password is set successfully..."<< std::endl; 
73     }  
74   
75     // 显示用户信息的函数  
76     void display() const {  
77         std::cout << "name: " << name << std::endl;
78         std::cout << "pass: ";  
79         for (char c : password) {  
80             std::cout << '*';  
81         }  
82         std::cout << std::endl;  
83         std::cout << "email: " << email << std::endl;  
84     }  
85 };  
86   
87 #endif // USER_HPP
User.hpp
 1 #include "user.hpp"
 2 #include <iostream>
 3 #include <vector>
 4 #include <string>
 5 
 6 using std::cin;
 7 using std::cout;
 8 using std::endl;
 9 using std::vector;
10 using std::string;
11 
12 void test() {
13     vector<User> user_lst;
14 
15     User u1("Alice", "2024113", "[email protected]");
16     user_lst.push_back(u1);
17     cout << endl;
18 
19     User u2("Bob");
20     u2.set_email();
21     u2.change_password();
22     user_lst.push_back(u2);
23     cout << endl;
24 
25     User u3("Hellen");
26     u3.set_email();
27     u3.change_password();
28     user_lst.push_back(u3);
29     cout << endl;
30 
31     cout << "There are " << user_lst.size() << " users. they are: " << endl;
32     for(auto &i: user_lst) {
33         i.display();
34         cout << endl;
35     }
36 }
37 
38 int main() {
39     test();
40 }
task5.cpp

结果截图

 

实验任务6

 1 #ifndef __DATE_H__
 2 #define __DATE_H__
 3 class Date {    
 4 private:
 5     int year;        
 6     int month;        
 7     int day;        
 8     int totalDays;    
 9 public:
10     Date(int year, int month, int day);    
11     int getYear() const { return year; }
12     int getMonth() const { return month; }
13     int getDay() const { return day; }
14     int getMaxDay() const;        
15     bool isLeapYear() const {    
16         return year % 4 == 0 && year % 100 != 0 || year % 400 == 0;
17     }
18     void show() const;            
19     
20     int distance(const Date& date) const {
21         return totalDays - date.totalDays;
22     }
23 };
24 #endif //__DATE_H__
data.h
 1 #include "date.h"
 2 #include <iostream>
 3 #include <cstdlib>
 4 using namespace std;
 5 namespace {    
 6     const int DAYS_BEFORE_MONTH[] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 };
 7 }
 8 Date::Date(int year, int month, int day) : year(year), month(month), day(day) {
 9     if (day <= 0 || day > getMaxDay()) {
10         cout << "Invalid date: ";
11         show();
12         cout << endl;
13         exit(1);
14     }
15     int years = year - 1;
16     totalDays = years * 365 + years / 4 - years / 100 + years / 400
17                 + DAYS_BEFORE_MONTH[month - 1] + day;
18     if (isLeapYear() && month > 2) totalDays++;
19 }
20 int Date::getMaxDay() const {
21     if (isLeapYear() && month == 2)
22         return 29;
23     else
24         return DAYS_BEFORE_MONTH[month]- DAYS_BEFORE_MONTH[month - 1];
25 }
26 void Date::show() const {
27     cout << getYear() << "-" << getMonth() << "-" << getDay();
28 }
data.cpp
 1 #ifndef __ACCOUNT_H__
 2 #define __ACCOUNT_H__
 3 #include "date.h"
 4 #include <string>
 5 class SavingsAccount { 
 6 private:
 7     std::string id;        
 8     double balance;        
 9     double rate;        
10     Date lastDate;        
11     double accumulation;    
12     static double total;    
13     
14     void record(const Date &date, double amount, const std::string &desc);
15     
16     void error(const std::string &msg) const;
17     
18     double accumulate(const Date& date) const {
19         return accumulation + balance * date.distance(lastDate);
20     }
21 public:
22     
23     SavingsAccount(const Date &date, const std::string &id, double rate);
24     const std::string &getId() const { return id; }
25     double getBalance() const { return balance; }
26     double getRate() const { return rate; }
27     static double getTotal() { return total; }
28   
29     void deposit(const Date &date, double amount, const std::string &desc);
30     
31     void withdraw(const Date &date, double amount, const std::string &desc);
32     
33     void settle(const Date &date);
34     
35     void show() const;
36 };
37 #endif //__ACCOUNT_H__
account.h
 1 #include "account.h"
 2 #include <cmath>
 3 #include <iostream>
 4 using namespace std;
 5 double SavingsAccount::total = 0;
 6 
 7 SavingsAccount::SavingsAccount(const Date &date, const string &id, double rate)
 8         : id(id), balance(0), rate(rate), lastDate(date), accumulation(0) {
 9     date.show();
10     cout << "\t#" << id << " created" << endl;
11 }
12 void SavingsAccount::record(const Date &date, double amount, const string &desc) {
13     accumulation = accumulate(date);
14     lastDate = date;
15     amount = floor(amount * 100 + 0.5) / 100;    
16     balance += amount;
17     total += amount;
18     date.show();
19     cout << "\t#" << id << "\t" << amount << "\t" << balance << "\t" << desc << endl;
20 }
21 void SavingsAccount::error(const string &msg) const {
22     cout << "Error(#" << id << "): " << msg << endl;
23 }
24 void SavingsAccount::deposit(const Date &date, double amount, const string &desc) {
25     record(date, amount, desc);
26 }
27 void SavingsAccount::withdraw(const Date &date, double amount, const string &desc) {
28     if (amount > getBalance())
29         error("not enough money");
30     else
31         record(date, -amount, desc);
32 }
33 void SavingsAccount::settle(const Date &date) {
34     double interest = accumulate(date) * rate    
35                       / date.distance(Date(date.getYear() - 1, 1, 1));
36     if (interest != 0)
37         record(date, interest, "interest");
38     accumulation = 0;
39 }
40 void SavingsAccount::show() const {
41     cout << id << "\tBalance: " << balance;
42 }
account.cpp
 1 #include "account.h"
 2 #include <iostream>
 3 using namespace std;
 4 int main() {
 5     Date date(2008, 11, 1);    
 6     
 7     SavingsAccount accounts[] = {
 8             SavingsAccount(date, "03755217", 0.015),
 9             SavingsAccount(date, "02342342", 0.015)
10     };
11     const int n = sizeof(accounts) / sizeof(SavingsAccount); 
12     
13     accounts[0].deposit(Date(2008, 11, 5), 5000, "salary");
14     accounts[1].deposit(Date(2008, 11, 25), 10000, "sell stock 0323");
15     
16     accounts[0].deposit(Date(2008, 12, 5), 5500, "salary");
17     accounts[1].withdraw(Date(2008, 12, 20), 4000, "buy a laptop");
18     
19     cout << endl;
20     for (int i = 0; i < n; i++) {
21         accounts[i].settle(Date(2009, 1, 1));
22         accounts[i].show();
23         cout << endl;
24     }
25     cout << "Total: " << SavingsAccount::getTotal() << endl;
26     return 0;
27 }
6_25.cpp

结果截图

 

标签:std,const,string,对象,编程,int,实验,vectorInt,include
From: https://www.cnblogs.com/uhcxdgj/p/18535889

相关文章

  • 希冀 操作系统 实验四 段式存储管理
    申请进程apply()函数完成了新开进程的功能,同时还记录了该进程需要的内存空间段数和每段的具体大小,你需要补全该函数。补全的代码为:voidapply(){printf("请输入进程的名字:");scanf("%s",duanbiaos[duanbiaonum].processname);printf("请输入该进程的段数:");......
  • 天天学编程Day10
    今日两道编程题LCR140. 训练计划IIclassSolution{public:ListNode*trainingPlan(ListNode*head,intcnt){//我选择使用双指针方法定义两个位置在头结点的指针//先让快指针先走cnt个位置然后让两个指针同时走//当快指针走到空节......
  • Cursor:编程软件中的璀璨明珠,解锁高效开发新姿势
    在编程领域,有一款备受瞩目的软件——Cursor。它为开发者们带来了全新的编程体验,无论是新手还是经验丰富的程序员都值得关注。本文将探讨Cursor的功能、特点以及它如何助力开发者提升编程效率。(无广)一、强大的功能特性(一)智能代码补全Cursor的代码补全功能堪称一绝。它不像......
  • C++ 函数对象、函数指针与Lambda表达式
    C++函数对象、函数指针与Lambda表达式函数指针函数指针(FunctionPointer)是指向函数的指针变量。它可以存储函数的地址,并通过该指针变量来调用该函数。函数指针的声明使用指针符号,指向的类型为函数的返回类型和参数列表,如int(funcPtr)(int,int);。函数指针的值可以指向相同......
  • 20222311 2024-2025-1 《网络与系统攻防技术》实验四实验报告
    1.实验内容1.1恶意代码文件类型标识、脱壳与字符串提取对提供的rada恶意代码样本,进行文件类型识别,脱壳与字符串提取,以获得rada恶意代码的编写作者,具体操作如下:(1)使用文件格式和类型识别工具,给出rada恶意代码样本的文件格式、运行平台和加壳工具;(2)使用超级巡警脱壳机等脱壳软件,......
  • 实验三 类和对象_基础编程2
    实验任务1button.hpp 1#pragmaonce23#include<iostream>4#include<string>56usingstd::string;7usingstd::cout;89//按钮类10classButton{11public:12Button(conststring&text);13stringget_label()con......
  • 关于虚拟仿真云实验教学_解决方案及优势介绍!
    在科技飞速演进的潮流下,虚拟仿真技术正不断蓬勃发展,成为教育领域的一颗耀眼之星。作为创新的教育手段,虚拟仿真云教学正逐渐受到越来越多教育机构的高度重视与广泛应用。本文将为您详细探讨虚拟仿真云实验教学的解决方案及其所带来的多重优势。虚拟仿真云-教育培训解决方案虚拟......
  • 掌握 IntelliJ IDEA,开启高效编程之旅
    在当今的编程世界中,IntelliJIDEA已成为众多开发者的首选工具。它以其强大的功能和高效的特性,为开发者提供了一个卓越的编程环境。掌握IntelliJIDEA,无疑是开启高效编程之旅的关键一步。IntelliJIDEA拥有智能的代码提示和自动完成功能,这使得编程变得更加快捷和流畅。它能......
  • 实验3
    task11#pragmaonce23#include<iostream>4#include<string>56usingstd::string;7usingstd::cout;89//按钮类10classButton{11public:12Button(conststring&text);13stringget_label()const;14voi......
  • 实验3 类和对象
    实验任务1button.hpp1#pragmaonce23#include<iostream>4#include<string>56usingstd::string;7usingstd::cout;89//按钮类10classButton{11public:12Button(conststring&text);13stringget_label()const;......