实验二

实验任务1:

源代码:

 1 #pragma once
 2 
 3 #include <string>
 4 
 5 // 类T: 声明
 6 class T {
 7 // 对象属性、方法
 8 public:
 9     T(int x = 0, int y = 0);   // 普通构造函数
10     T(const T &t);  // 复制构造函数
11     T(T &&t);       // 移动构造函数
12     ~T();           // 析构函数
13 
14     void adjust(int ratio);      // 按系数成倍调整数据
15     void display() const;           // 以(m1, m2)形式显示T类对象信息
16 
17 private:
18     int m1, m2;
19 
20 // 类属性、方法
21 public:
22     static int get_cnt();          // 显示当前T类对象总数
23 
24 public:
25     static const std::string doc;       // 类T的描述信息
26     static const int max_cnt;           // 类T对象上限
27 
28 private:
29     static int cnt;         // 当前T类对象数目
30 
31 // 类T友元函数声明
32     friend void func();
33 };
34 
35 // 普通函数声明
36 void func();
t.h
 1 #include "T.h"
 2 #include <iostream>
 3 #include <string>
 4 
 5 // 类T实现
 6 
 7 // static成员数据类外初始化
 8 const std::string T::doc{"a simple class sample"};
 9 const int T::max_cnt = 999;
10 int T::cnt = 0;
11 
12 // 类方法
13 int T::get_cnt() {
14    return cnt;
15 }
16 
17 // 对象方法
18 T::T(int x, int y): m1{x}, m2{y} { 
19     ++cnt; 
20     std::cout << "T constructor called.\n";
21 } 
22 
23 T::T(const T &t): m1{t.m1}, m2{t.m2} {
24     ++cnt;
25     std::cout << "T copy constructor called.\n";
26 }
27 
28 T::T(T &&t): m1{t.m1}, m2{t.m2} {
29     ++cnt;
30     std::cout << "T move constructor called.\n";
31 }    
32 
33 T::~T() {
34     --cnt;
35     std::cout << "T destructor called.\n";
36 }           
37 
38 void T::adjust(int ratio) {
39     m1 *= ratio;
40     m2 *= ratio;
41 }    
42 
43 void T::display() const {
44     std::cout << "(" << m1 << ", " << m2 << ")" ;
45 }     
46 
47 // 普通函数实现
48 void func() {
49     T t5(42);
50     t5.m2 = 2049;
51     std::cout << "t5 = "; t5.display(); std::cout << '\n';
52 }
t.cpp
 1 #include "T.h"
 2 #include <iostream>
 3 
 4 void test_T();
 5 
 6 int main() {
 7     std::cout << "test Class T: \n";
 8     test_T();
 9 
10     std::cout << "\ntest friend func: \n";
11     func();
12 }
13 
14 void test_T() {
15     using std::cout;
16     using std::endl;
17 
18     cout << "T info: " << T::doc << endl;
19     cout << "T objects'max count: " << T::max_cnt << endl;
20     cout << "T objects'current count: " << T::get_cnt() << endl << endl;
21 
22     T t1;
23     cout << "t1 = "; t1.display(); cout << endl;
24 
25     T t2(3, 4);
26     cout << "t2 = "; t2.display(); cout << endl;
27 
28     T t3(t2);
29     t3.adjust(2);
30     cout << "t3 = "; t3.display(); cout << endl;
31 
32     T t4(std::move(t2));
33     cout << "t4 = "; t4.display(); cout << endl;
34 
35     cout << "test: T objects'current count: " << T::get_cnt() << endl;
36 }
task1.cpp

屏幕截图 2025-10-25 144032

问题:

1.YES

2.普通构造函数:初始化T的对象,为m1,m2赋值,创建类的新对象时调用,复制构造函数:复制已存在的T对象的成员变量初始化新对象,在用已有对象初始化新对象时调用,移动构造函数:将临时的T对象转移来初始化新对象,用右值初始化新对象时调用,析构函数:销毁T对象释放资源,对象周期结束时调用

3.不能

屏幕截图 2025-10-25 145338

移动函数会被重复定义

实验任务2:

源代码:

 1 #pragma once
 2 #include<iostream>
 3 #include<string>
 4 #include<cmath>
 5 #include<algorithm>
 6 class Complex{
 7     public:
 8         static const std::string doc;
 9         Complex();
10         Complex(double real);
11         Complex(double real,double imag);
12         Complex(const Complex& other);
13         double get_real()const;
14         double get_imag()const;
15         void add(const Complex& other);
16         friend void output(const Complex& c);
17         friend double abs(const Complex& c);
18         friend Complex add(const Complex &c1,const Complex& c2);
19         friend bool is_equal(const Complex& c1,const Complex& c2);
20         friend bool is_not_equal(const Complex& c1,const Complex& c2);
21         private:
22         double real;
23         double imag;
24         
25 };
complex.h
 1 #include"Complex.h"
 2 const std::string Complex::doc="a simplified complex class";
 3 Complex::Complex():real(0.0),imag(0.0){}
 4 Complex::Complex(double real):real(real),imag(0.0){}
 5 Complex::Complex(double real,double imag):real(real),imag(imag){}
 6 Complex::Complex(const Complex& other):real(other.real),imag(other.imag){}
 7 double Complex::get_real()const{return real;}
 8 double Complex::get_imag()const{return imag;}
 9 void Complex::add(const Complex& other){
10     real+=other.real;
11     imag+=other.imag;
12 }
13 void output(const Complex& c){
14     std::cout<<c.real<<(c.imag>=0?"+":"")<<c.imag<<"i";
15 }
16 double abs(const Complex& c){
17     return std::sqrt(c.real*c.real+c.imag+c.imag);
18 }
19 Complex add(const Complex &c1,const Complex& c2){
20     return Complex(c1.real+c2.real,c1.imag+c2.imag);
21 }
22 bool is_equal(const Complex& c1,const Complex& c2){
23     return (c1.real==c2.real)&&(c1.imag==c2.imag);
24 }
25 bool is_not_equal(const Complex& c1,const Complex& c2){
26     return !is_equal(c1,c2);
27 }
complex.cpp
 1 #include "Complex.h"
 2 #include <iostream>
 3 #include <iomanip>
 4 #include <complex>
 5 
 6 void test_Complex();
 7 void test_std_complex();
 8 
 9 int main() {
10     std::cout << "*******测试1: 自定义类Complex*******\n";
11     test_Complex();
12 
13     std::cout << "\n*******测试2: 标准库模板类complex*******\n";
14     test_std_complex();
15 }
16 
17 void test_Complex() {
18     using std::cout;
19     using std::endl;
20     using std::boolalpha;
21 
22     cout << "类成员测试: " << endl;
23     cout << Complex::doc << endl << endl;
24 
25     cout << "Complex对象测试: " << endl;
26     Complex c1;
27     Complex c2(3, -4);
28     Complex c3(c2);
29     Complex c4 = c2;
30     const Complex c5(3.5);
31 
32     cout << "c1 = "; output(c1); cout << endl;
33     cout << "c2 = "; output(c2); cout << endl;
34     cout << "c3 = "; output(c3); cout << endl;
35     cout << "c4 = "; output(c4); cout << endl;
36     cout << "c5.real = " << c5.get_real() 
37          << ", c5.imag = " << c5.get_imag() << endl << endl;
38 
39     cout << "复数运算测试: " << endl;
40     cout << "abs(c2) = " << abs(c2) << endl;
41     c1.add(c2);
42     cout << "c1 += c2, c1 = "; output(c1); cout << endl;
43     cout << boolalpha;
44     cout << "c1 == c2 : " << is_equal(c1, c2) << endl;
45     cout << "c1 != c2 : " << is_not_equal(c1, c2) << endl;
46     c4 = add(c2, c3);
47     cout << "c4 = c2 + c3, c4 = "; output(c4); cout << endl;
48 }
49 
50 void test_std_complex() {
51     using std::cout;
52     using std::endl;
53     using std::boolalpha;
54 
55     cout << "std::complex<double>对象测试: " << endl;
56     std::complex<double> c1;
57     std::complex<double> c2(3, -4);
58     std::complex<double> c3(c2);
59     std::complex<double> c4 = c2;
60     const std::complex<double> c5(3.5);
61 
62     cout << "c1 = " << c1 << endl;
63     cout << "c2 = " << c2 << endl;
64     cout << "c3 = " << c3 << endl;
65     cout << "c4 = " << c4 << endl;
66 
67     cout << "c5.real = " << c5.real() 
68          << ", c5.imag = " << c5.imag() << endl << endl;
69 
70     cout << "复数运算测试: " << endl;
71     cout << "abs(c2) = " << abs(c2) << endl;
72     c1 += c2;
73     cout << "c1 += c2, c1 = " << c1 << endl;
74     cout << boolalpha;
75     cout << "c1 == c2 : " << (c1 == c2)<< endl;
76     cout << "c1 != c2 : " << (c1 != c2) << endl;
77     c4 = c2 + c3;
78     cout << "c4 = c2 + c3, c4 = " << c4 << endl;
79 }
task2.cpp

屏幕截图 2025-10-25 155236

问题:

1.标准库模板更符合日常复数运算的逻辑思考,更简洁;有关联,函数的内在逻辑和运算的逻辑很相似

2.1否,类complex中有相应的get接口可供获取数据值,无需访问私有数据

2.2否

2.3当必须要访问私有成员且无法通过公有接口访问时使用友元

3.可在复制构造函数前加上explicit

实验任务3:

源代码:

 1 #pragma once
 2 #include <string>
 3 
 4 enum class ControlType {Play, Pause, Next, Prev, Stop, Unknown};
 5 
 6 class PlayerControl {
 7 public:
 8     PlayerControl();
 9 
10     ControlType parse(const std::string& control_str);   // 实现std::string --> ControlType转换
11     void execute(ControlType cmd) const;   // 执行控制操作(以打印输出模拟)       
12 
13     static int get_cnt();
14 
15 private:
16     static int total_cnt;   
17 };
PlayerControl.h
 1 #include "PlayerControl.h"
 2 #include <iostream>
 3 #include <algorithm>   
 4 
 5 int PlayerControl::total_cnt = 0;
 6 
 7 PlayerControl::PlayerControl() {}
 8 
 9 // 待补足
10 // 1. 将输入字符串转为小写,实现大小写不敏感
11 // 2. 匹配"play"/"pause"/"next"/"prev"/"stop"并返回对应枚举
12 // 3. 未匹配的字符串返回ControlType::Unknown
13 // 4. 每次成功调用parse时递增total_cnt
14 ControlType PlayerControl::parse(const std::string& control_str) {
15      std::string lower_str = control_str; 
16     for (auto& c : lower_str) {           
17         c = std::tolower(c);             
18     }
19     ControlType type = ControlType::Unknown;
20     if (lower_str == "play") {
21         type = ControlType::Play;
22     } else if (lower_str == "pause") {
23         type = ControlType::Pause;
24     } else if (lower_str == "next") {
25         type = ControlType::Next;
26     } else if (lower_str == "prev") {
27         type = ControlType::Prev;
28     } else if (lower_str == "stop") {
29         type = ControlType::Stop;
30     }
31     if (type != ControlType::Unknown) {
32         total_cnt++;
33     }
34     return type; 
35 }
36 
37 void PlayerControl::execute(ControlType cmd) const {
38     switch (cmd) {
39     case ControlType::Play:  std::cout << "[play] Playing music...\n"; break;
40     case ControlType::Pause: std::cout << "[Pause] Music paused\n";    break;
41     case ControlType::Next:  std::cout << "[Next] Skipping to next track\n"; break;
42     case ControlType::Prev:  std::cout << "[Prev] Back to previous track\n"; break;
43     case ControlType::Stop:  std::cout << "[Stop] Music stopped\n"; break;
44     default:                 std::cout << "[Error] unknown control\n"; break;
45     }
46 }
47 
48 int PlayerControl::get_cnt() {
49     return total_cnt;
50 }
PlayerControl.cpp
 1 #include "PlayerControl.h"
 2 #include <iostream>
 3 
 4 void test() {
 5     PlayerControl controller;
 6     std::string control_str;
 7     std::cout << "Enter Control: (play/pause/next/prev/stop/quit):\n";
 8 
 9     while(std::cin >> control_str) {
10         if(control_str == "quit")
11             break;
12         
13         ControlType cmd = controller.parse(control_str);
14         controller.execute(cmd);
15         std::cout << "Current Player control: " << PlayerControl::get_cnt() << "\n\n";
16     }
17 }
18 
19 int main() {
20     test();
21 }
task3.cpp

屏幕截图 2025-10-25 163958

实验任务4:

源代码:

 1 #include<iostream>
 2 #include <string>
 3 class Fraction{
 4     public:
 5         static const std::string doc;
 6         Fraction(int up,int down=1);
 7         Fraction(const Fraction& other);
 8         int get_up() const;
 9          int get_down() const;
10         Fraction negative() const;
11         friend void output(const Fraction& f);
12         friend Fraction add(const Fraction& f1, const Fraction& f2);
13         friend Fraction sub(const Fraction& f1, const Fraction& f2);
14         friend Fraction mul(const Fraction& f1, const Fraction& f2);
15         friend Fraction div(const Fraction& f1, const Fraction& f2);
16         int gcd(int a, int b) const;
17         void simplify();
18     
19     private:    
20         
21         int up;
22         int down;
23 };
Fraction.h
 1 #include "Fraction.h"
 2 const std::string Fraction::doc="Fraction类 v 0.01版\n目前仅支持分数对象的构造,输出,加/减/乘/除运算";
 3 //构造函数 
 4 Fraction::Fraction(int up,int down):up(up),down(down){
 5     if(down==0){
 6     std::cout<<"分母不能为0"<<std::endl;
 7     exit(1);
 8     }    
 9     simplify();
10 }
11 Fraction::Fraction(const Fraction& other):up(other.up),down(other.down){}
12 //接口 
13 int Fraction::get_up() const {
14     return up;
15 }
16 int Fraction::get_down() const {
17     return down;
18 }
19 Fraction Fraction::negative() const {
20     return Fraction(-up, down);
21 }
22 //工具函数
23 //公约数 
24 int Fraction::gcd(int a, int b) const {
25     a = std::abs(a);
26     b = std::abs(b);  
27     while (b != 0) {
28         int temp = b;
29         b = a % b;
30         a = temp;
31     }
32     return a;
33 }
34 //化简 
35 void Fraction::simplify() {
36     //正负号 
37     if (down < 0) {
38         up = -up;
39         down = -down;
40     }
41     //约分 
42     int g = gcd(up, down);
43     if (g != 0) {
44         up /= g;
45         down /= g;
46     }
47 }
48 //输出 
49 void output(const Fraction& f){
50     if(f.up==0) 
51     std::cout << f.up;
52     else 
53     std::cout << f.up << "/" << f.down;
54         }
55 //加法 
56 Fraction add(const Fraction& f1, const Fraction& f2){
57     int newUp = f1.up * f2.down + f2.up * f1.down;
58     int newDown = f1.down * f2.down;
59     Fraction result(newUp, newDown);
60     return result;
61     }
62 //减法 
63 Fraction sub(const Fraction& f1, const Fraction& f2){
64     int newUp = f1.up * f2.down - f2.up * f1.down;
65     int newDown = f1.down * f2.down;
66     Fraction result(newUp, newDown);
67     return result;
68         }
69 //乘法 
70 Fraction mul(const Fraction& f1, const Fraction& f2){
71     int newUp = f1.up * f2.up;
72     int newDown = f1.down * f2.down;
73     Fraction result(newUp, newDown);
74     return result;
75         }
76 //除法 
77 Fraction div(const Fraction& f1, const Fraction& f2){
78     int newUp = f1.up * f2.down;
79     int newDown = f1.down * f2.up;
80     Fraction result(newUp, newDown);
81     return result;
82         }
Fraction.cpp
 1 #include "Fraction.h"
 2 #include <iostream>
 3 
 4 void test1();
 5 void test2();
 6 
 7 int main() {
 8     std::cout << "测试1: Fraction类基础功能测试\n";
 9     test1();
10 
11     std::cout << "\n测试2: 分母为0测试: \n";
12     test2();
13 }
14 
15 void test1() {
16     using std::cout;
17     using std::endl;   
18 
19     cout << "Fraction类测试: " << endl;
20     cout << Fraction::doc << endl << endl;
21 
22     Fraction f1(5);
23     Fraction f2(3, -4), f3(-18, 12);
24     Fraction f4(f3);
25     cout << "f1 = "; output(f1); cout << endl;
26     cout << "f2 = "; output(f2); cout << endl;
27     cout << "f3 = "; output(f3); cout << endl;
28     cout << "f4 = "; output(f4); cout << endl;
29 
30     const Fraction f5(f4.negative());
31     cout << "f5 = "; output(f5); cout << endl;
32     cout << "f5.get_up() = " << f5.get_up() 
33         << ", f5.get_down() = " << f5.get_down() << endl;
34 
35     cout << "f1 + f2 = "; output(add(f1, f2)); cout << endl;
36     cout << "f1 - f2 = "; output(sub(f1, f2)); cout << endl;
37     cout << "f1 * f2 = "; output(mul(f1, f2)); cout << endl;
38     cout << "f1 / f2 = "; output(div(f1, f2)); cout << endl;
39     cout << "f4 + f5 = "; output(add(f4, f5)); cout << endl;
40 }
41 
42 void test2() {
43     using std::cout;
44     using std::endl;
45 
46     Fraction f6(42, 55), f7(0, 3);
47     cout << "f6 = "; output(f6); cout << endl;
48     cout << "f7 = "; output(f7); cout << endl;
49     cout << "f6 / f7 = "; output(div(f6, f7)); cout << endl;
50 }
task4.cpp

屏幕截图 2025-10-25 180306

问题:

选择友元,优点是友元可直接访问私有成员,代码简洁,缺点是友元可能被滥用

posted @ 2025-10-25 18:09  ({)}  阅读(6)  评论(1)    收藏  举报