现代C++编程初体验

news/2025/10/28 21:26:25/文章来源:https://www.cnblogs.com/slp0923/p/19172772

##实验任务1

##代码

#pragma once#include <string>// 类T: 声明
class T {
// 对象属性、方法
public:T(int x = 0, int y = 0);   // 普通构造函数T(const T &t);  // 复制构造函数T(T &&t);       // 移动构造函数~T();           // 析构函数void adjust(int ratio);      // 按系数成倍调整数据void display() const;           // 以(m1, m2)形式显示T类对象信息private:int m1, m2;// 类属性、方法
public:static int get_cnt();          // 显示当前T类对象总数public:static const std::string doc;       // 类T的描述信息static const int max_cnt;           // 类T对象上限private:static int cnt;         // 当前T类对象数目// 类T友元函数声明
#include "Fraction.h"
#include <iostream>// 初始化类属性
const std::string Fraction::doc = "Fraction类 v0.01版.\n目前仅支持分数对象的构造、输出、加/减/乘/除运算.";// 构造函数
Fraction::Fraction(int up, int down) : up(up), down(down) {if (down == 0) {std::cerr << "分母不能为0" << std::endl;// 分母为0时,默认初始化为0/1this->up = 0;this->down = 1;} else {simplify();}
}// 拷贝构造函数
Fraction::Fraction(const Fraction& other) : up(other.up), down(other.down) {}// 获取分子
int Fraction::get_up() const {return up;
}// 获取分母
int Fraction::get_down() const {return down;
}// 求负
Fraction Fraction::negative() const {return Fraction(-up, down);
}// 化简分数
void Fraction::simplify() {if (up == 0) {down = 1;return;}int sign = 1;if (up < 0) {sign *= -1;up = -up;}if (down < 0) {sign *= -1;down = -down;}int g = gcd(up, down);up = sign * (up / g);down = down / g;
}// 求最大公约数
int Fraction::gcd(int a, int b) {return b == 0 ? a : gcd(b, a % b);
}// 输出分数
void output(const Fraction& frac) {if (frac.down == 1) {std::cout << frac.up;} else {std::cout << frac.up << "/" << frac.down;}
}// 分数相加
Fraction add(const Fraction& f1, const Fraction& f2) {int up = f1.up * f2.down + f2.up * f1.down;int down = f1.down * f2.down;Fraction result(up, down);result.simplify();return result;
}// 分数相减
Fraction sub(const Fraction& f1, const Fraction& f2) {int up = f1.up * f2.down - f2.up * f1.down;int down = f1.down * f2.down;Fraction result(up, down);result.simplify();return result;
}// 分数相乘
Fraction mul(const Fraction& f1, const Fraction& f2) {int up = f1.up * f2.up;int down = f1.down * f2.down;Fraction result(up, down);result.simplify();return result;
}// 分数相除
Fraction div(const Fraction& f1, const Fraction& f2) {if (f2.up == 0) {std::cerr << "分母不能为0" << std::endl;return Fraction(0, 1);}int up = f1.up * f2.down;int down = f1.down * f2.up;Fraction result(up, down);result.simplify();return result;
}

#include "Fraction.h"
#include <iostream>void test1();
void test2();int main() {std::cout << "测试1: Fraction类基础功能测试\n";test1();std::cout << "\n测试2: 分母为0测试: \n";test2();return 0;
}void test1() {using std::cout;using std::endl;cout << "Fraction类测试: " << endl;cout << Fraction::doc << endl << endl;Fraction f1(5);Fraction f2(3, -4), f3(-18, 12);Fraction f4(f3);cout << "f1 = "; output(f1); cout << endl;cout << "f2 = "; output(f2); cout << endl;cout << "f3 = "; output(f3); cout << endl;cout << "f4 = "; output(f4); cout << endl;const Fraction f5(f4.negative());cout << "f5 = "; output(f5); cout << endl;cout << "f5.get_up() = " << f5.get_up()<< ", f5.get_down() = " << f5.get_down() << endl;cout << "f1 + f2 = "; output(add(f1, f2)); cout << endl;cout << "f1 - f2 = "; output(sub(f1, f2)); cout << endl;cout << "f1 * f2 = "; output(mul(f1, f2)); cout << endl;cout << "f1 / f2 = "; output(div(f1, f2)); cout << endl;cout << "f4 + f5 = "; output(add(f4, f5)); cout << endl;
}void test2() {using std::cout;using std::endl;Fraction f6(42, 55), f7(0, 3);cout << "f6 = "; output(f6); cout << endl;cout << "f7 = "; output(f7); cout << endl;cout << "f6 / f7 = "; output(div(f6, f7)); cout << endl;
}

 

    friend void func();
};// 普通函数声明
void func();
#include "T.h"
#include <iostream>
#include <string>// 类T实现// static成员数据类外初始化
const std::string T::doc{"a simple class sample"};
const int T::max_cnt = 999;
int T::cnt = 0;// 类方法
int T::get_cnt() {return cnt;
}// 对象方法
T::T(int x, int y): m1{x}, m2{y} {++cnt;std::cout << "T constructor called.\n";
}T::T(const T &t): m1{t.m1}, m2{t.m2} {++cnt;std::cout << "T copy constructor called.\n";
}T::T(T &&t): m1{t.m1}, m2{t.m2} {++cnt;std::cout << "T move constructor called.\n";
}T::~T() {--cnt;std::cout << "T destructor called.\n";
}void T::adjust(int ratio) {m1 *= ratio;m2 *= ratio;
}void T::display() const {std::cout << "(" << m1 << ", " << m2 << ")" ;
}// 普通函数实现
void func() {T t5(42);t5.m2 = 2049;std::cout << "t5 = "; t5.display(); std::cout << '\n';
}

 ##task1.cpp

#include "T.h"
#include <iostream>void test_T();int main() {std::cout << "test Class T: \n";test_T();std::cout << "\ntest friend func: \n";func();
}void test_T() {using std::cout;using std::endl;cout << "T info: " << T::doc << endl;cout << "T objects'max count: " << T::max_cnt << endl;cout << "T objects'current count: " << T::get_cnt() << endl << endl;T t1;cout << "t1 = "; t1.display(); cout << endl;T t2(3, 4);cout << "t2 = "; t2.display(); cout << endl;T t3(t2);t3.adjust(2);cout << "t3 = "; t3.display(); cout << endl;T t4(std::move(t2));cout << "t4 = "; t4.display(); cout << endl;cout << "test: T objects'current count: " << T::get_cnt() << endl;
}

 

image

1.YES

2.

普通构造函数  功能:初始化对象的数据成员    调用时机:创建新对象时

复制构造函数  功能:通过拷贝另一个同类对象来初始化新对象   调用时机:用已有对象初始化新对象时 对象作为值参数传递给函数时

移动构造函数  功能调用时机用:高效转移资源,右值(临时对象)初始化新对象时。

3.能正确编译。

##实验任务2

##代码

##Complex.h

#ifndef COMPLEX_H
#define COMPLEX_H#include <string>class Complex {
public:static const std::string doc;  // 类说明文档// 构造函数Complex();                          // 默认构造函数,创建0+0iComplex(double real);               // 用实部创建复数,虚部为0Complex(double real, double imag);  // 用实部和虚部创建复数Complex(const Complex& other);      // 拷贝构造函数// 成员函数double get_real() const;           // 获取实部double get_imag() const;           // 获取虚部void add(const Complex& other);     // 复数加法,相当于+=// 友元函数friend void output(const Complex& c);           // 输出复数friend double abs(const Complex& c);            // 取模friend Complex add(const Complex& c1, const Complex& c2); // 复数相加friend bool is_equal(const Complex& c1, const Complex& c2);    // 判断相等friend bool is_not_equal(const Complex& c1, const Complex& c2); // 判断不等private:double real_;  // 实部double imag_;  // 虚部
};#endif // COMPLEX_H

##task2.cpp

#include "Complex.h"
#include <iostream>
#include <iomanip>
#include <complex>using namespace std;void test_Complex();
void test_std_complex();int main() {cout << "*******测试1: 自定义类Complex*******\n";test_Complex();cout << "\n*******测试2: 标准库模板类complex*******\n";test_std_complex();return 0;
}void test_Complex() {using std::cout;using std::endl;using std::boolalpha;cout << "类成员测试: " << endl;cout << Complex::doc << endl << endl;cout << "Complex对象测试: " << endl;Complex c1;Complex c2(3, -4);Complex c3(c2);Complex c4 = c2;const Complex c5(3.5);cout << "c1 = "; output(c1); cout << endl;cout << "c2 = "; output(c2); cout << endl;cout << "c3 = "; output(c3); cout << endl;cout << "c4 = "; output(c4); cout << endl;cout << "c5.real = " << c5.get_real()<< ", c5.imag = " << c5.get_imag() << endl << endl;cout << "复数运算测试: " << endl;cout << "abs(c2) = " << abs(c2) << endl;c1.add(c2);cout << "c1 += c2, c1 = "; output(c1); cout << endl;cout << boolalpha;cout << "c1 == c2 : " << is_equal(c1, c2) << endl;cout << "c1 != c2 : " << is_not_equal(c1, c2) << endl;c4 = add(c2, c3);cout << "c4 = c2 + c3, c4 = "; output(c4); cout << endl;
}void test_std_complex() {using std::cout;using std::endl;using std::boolalpha;cout << "std::complex<double>对象测试: " << endl;std::complex<double> c1;std::complex<double> c2(3, -4);std::complex<double> c3(c2);std::complex<double> c4 = c2;const std::complex<double> c5(3.5);cout << "c1 = " << c1 << endl;cout << "c2 = " << c2 << endl;cout << "c3 = " << c3 << endl;cout << "c4 = " << c4 << endl;cout << "c5.real = " << c5.real()<< ", c5.imag = " << c5.imag() << endl << endl;cout << "复数运算测试: " << endl;cout << "abs(c2) = " << abs(c2) << endl;c1 += c2;cout << "c1 += c2, c1 = " << c1 << endl;cout << boolalpha;cout << "c1 == c2 : " << (c1 == c2) << endl;cout << "c1 != c2 : " << (c1 != c2) << endl;c4 = c2 + c3;cout << "c4 = c2 + c3, c4 = " << c4 << endl;
}

image

 

​​标准库模板类complex明显更简洁,标准库使用自然的数学运算符,自定义类complex需要专门的输出函数;

函数和运算在功能上是完全等价的,只是标准库的写法更接近数学表达式,直观易懂,标准库的设计通过运算符重载实现了更优雅的语法。

##问题2

2.1是,列如,如果仅通过 get_real()和 get_imag()获取数据,output()需要额外逻辑拼接字符串,不如直接访问私有变量高效,如果不直接访问私有数据,可能会导致性能损失,代码冗余​​,封装性降低等,因此,友元函数是合理的设计选择。

2.2标准库 std::complex​​没有​​将 abs()设为友元函数,std::abs(std::complex)是独立函数​​,它​​不依赖友元​​访问 std::complex的私有数据,而是通过 real()和 imag()这两个公共成员函数获取实部和虚部。

2.3需要访问私有数据,但无法通过公有接口高校实现;需要支持运算符重载,但运算符函数不能是成员。

##问题3

Complex c4 = c2是拷贝初始化,如果编译失败,那么使用直接初始化Complex c3(c2)。

##实验任务3

##代码

#pragma once
#include <string>
enum class ControlType {Play, Pause, Next, Prev, Stop, Unknown};
class PlayerControl {
public:PlayerControl();ControlType parse(const std::string& control_str); // 实现std::string --> ControlType转换void execute(ControlType cmd) const; // 执行控制操作(以打印输出模拟)static int get_cnt();
private:static int total_cnt;
};
#include "PlayerControl.h"
#include <iostream>
#include <algorithm>
#include <cctype>int PlayerControl::total_cnt = 0;PlayerControl::PlayerControl() {}ControlType PlayerControl::parse(const std::string& control_str) {// 1. 将输入字符串转为小写(实现大小写不敏感)std::string lower_str = control_str;std::transform(lower_str.begin(), lower_str.end(), lower_str.begin(),[](unsigned char c) { return std::tolower(c); });// 2. 匹配命令并返回对应枚举ControlType cmd = ControlType::Unknown;if (lower_str == "play") {cmd = ControlType::Play;} else if (lower_str == "pause") {cmd = ControlType::Pause;} else if (lower_str == "next") {cmd = ControlType::Next;} else if (lower_str == "prev") {cmd = ControlType::Prev;} else if (lower_str == "stop") {cmd = ControlType::Stop;}// 3. 成功匹配时,递增总操作次数if (cmd != ControlType::Unknown) {total_cnt++;}return cmd;
}void PlayerControl::execute(ControlType cmd) const {switch (cmd) {case ControlType::Play:std::cout << "[play] Playing music...\n";break;case ControlType::Pause:std::cout << "[Pause] Music paused\n";break;case ControlType::Next:std::cout << "[Next] Skipping to next track\n";break;case ControlType::Prev:std::cout << "[Prev] Back to previous track\n";break;case ControlType::Stop:std::cout << "[Stop] Music stopped\n";break;default:std::cout << "[Error] unknown control\n";break;}
}int PlayerControl::get_cnt() {return total_cnt;
}
#include "PlayerControl.h"
#include <iostream>
void test() {PlayerControl controller;std::string control_str;std::cout << "Enter Control: (play/pause/next/prev/stop/quit):\n";while(std::cin >> control_str) {if(control_str == "quit")
break;ControlType cmd = controller.parse(control_str);
controller.execute(cmd);std::cout << "Current Player control: " << PlayerControl::get_cnt() << "\n\n";}
}
int main(){test();
}

##运行结果

image

 

 ##实验任务4

##代码

##Fraction.h

#ifndef FRACTION_H
#define FRACTION_H#include <string>class Fraction {
public:// 类属性,用于类说明static const std::string doc;// 构造函数Fraction(int up = 0, int down = 1);Fraction(const Fraction& other);// 接口int get_up() const;int get_down() const;Fraction negative() const;// 友元函数声明(工具函数)friend void output(const Fraction& frac);friend Fraction add(const Fraction& f1, const Fraction& f2);friend Fraction sub(const Fraction& f1, const Fraction& f2);friend Fraction mul(const Fraction& f1, const Fraction& f2);friend Fraction div(const Fraction& f1, const Fraction& f2);private:// 对象属性:分子和分母int up;int down;// 内部工具函数:化简分数void simplify();// 内部工具函数:求最大公约数int gcd(int a, int b);
};#endif // FRACTION_H

image

 友元函数.友元函数可以直接访问分子分母这些私有成员,无需通过类的接口间接获取;静态成员函数需要通过类名或对象来调用,而不能直接访问私有成员;命名空间方案的自由函数也无法直接访问类的私有成员,必须通过类提供的公有接口来获取分子分母;

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/949148.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Delphi 利用接口实现frame窗体间的通讯(互动)

需求说明: 程序设计:效果演示:设计思路: FrmCK 只负责发布事件,不关心谁在监听. FrmGrid 只负责响应事件,不关心事件来源. 创建过程: 一.创建接口单元FrmInterface. 全部代码如下:unit FrmInterface;interfaceusessy…

Python冒泡排序:简单易懂的算法实现

在编程的世界里,排序算法是数据处理的基础之一。冒泡排序(Bubble Sort)是一种简单且直观的排序算法,虽然它的效率不是最高的,但它非常适合初学者学习排序算法的基本概念。今天,我们就来详细探讨如何在Python中实…

SAM+ARM

一、首先是图像caption的生成。 输入的图像,被输入进BLIP的图像编码器得到图像嵌入,图像嵌入再经过(BLIP Image-grounded Text Decoder) 得到图像caption。ti表示caption的第i个单词,总共有L个单词。 但是,capti…

《代码大全2》观后感(二):需求分析——代码质量的“源头防线”

《代码大全2》观后感(二):需求分析——代码质量的“源头防线” “为什么明明按需求写的代码,最后还是要推翻重写?”这是我过去常有的困惑,直到读了《代码大全2》中“需求分析”的章节,才找到答案:很多时候,我…

NRF54LM20A 芯片的优点

多达 66 个 GPIO 7 个串行接口(SPI、TWI、UART、HS-SPI) 14 位 ADC、全局 RTC(在系统关闭状态下可用)、TDM、PDM、NFC、PWM、QDEC 等 显著降低的功耗 - 与 nRF52 系列相比,典型蓝牙低功耗应用场景下功耗降低约 30-50% …

零散点小总结(25.10.28)

今天练习了Dp,主要把Dp重新看待了一下,有以下几点Dp其实本质是一种表,用于储存子问题的答案 Dp中其实还有枚举,只是由于子问题被存入表中了,所以减少了时间复杂度 一个搜索其实就是Dp的暴力解,有很多的子问题,但…

Top Tree大学习

前言 \(Top Tree\) 用来解决 路径查询,动态 \(dp\) 等问题。 信息储存在 簇 中。 簇(\(Cluster\)) 树上一个边联通块,可以收缩成一条边,我们成这样的联通子图为 簇。 簇上的某些点与其它簇相接,我们称其为簇的 端…

乱学点东西目录

这里记录了各种各样的奇奇怪怪的算法/思路/数据结构,好玩! 乱学点东西#1 :二进制警报器可以自由转载

CFS任务的负载均衡(load balance)

前言 我们描述CFS任务负载均衡的系列文章一共三篇,第一篇是框架部分,第二篇描述了task placement和active upmigration两个典型的负载均衡场景。本文是第三篇,主要是分析各种负载均衡的触发和具体的均衡逻辑过程。 …

EVE-NG导入华为等镜像的方法

镜像下载Dynamips:思科设备真实IOS镜像,类似GNS3,电脑CPU利用率非常高。 IOL:IOU模拟器的镜像,基本完全支持思科设备二、三层功能。 QEMU:这已经不是镜像文件,而是KVM虚拟机安装操作系统后生成的磁盘文件,通常…

(简记)一类支配点对解决区间查询问题

前言:最近好像见了挺多这种题,记录一下。 支配点对 我们经常遇到树上或区间上关于 \(x,y\in[l,r]\) 一类的区间统计问题,且通常要求区间内点两两任意匹配并统计总贡献,这个贡献不具有简单可加性。我们往往通过找支…

2025 云斗

10/27 Contest 5 A:小分讨+dp C:发现是所有的数和它的倍数有限制,对于值域 \(n\) 这样的限制也只有 \(\sum\limits_{i=1}^n\frac{n}{i}=n\log n\) 个,考虑如何表示这些限制。 考虑对于限制 u,v,若两点都不是对方的…

c++ ranges随笔

ranges c++20引入,在<ranges>头文件中 建立在 std::algo 和 iterator基础上,并做了进一步的抽象集成 与之前相比更加的 安全、简洁、方便 // ranges concept template <typename T> concept range = req…

qoj14458. 调色滤镜

qoj14458. 调色滤镜 平面 \([1,10^9]\times[1,10^9]\) 上有 \(n\) 个点,点 \(i\) 位于 \((x,y)\),有颜色 \(c_i\in [0,9]\)。 有 \(q\) 次操作,每次对平面上一个矩形范围内的点的颜色作用映射 \(f:[0,9]\rightarrow…

第8天(中等题 不定长滑动窗口、哈希表)

打卡第八天 3道中等题滑动窗口相当于在维护一个队列。右指针的移动可以视作入队,左指针的移动可以视作出队。 熟练度+++ 可以十几分钟独立写出相似题了^O^/ 耗时≈一小时 明天继续

P10259 [COCI 2023/2024 #5] Piratski kod

题链 题意 首先,题目写的很抽象,模拟赛时读了半个小时才读懂 题意概括一下就是枚举长度为k的所有01串 然后对01串进行划分,每遇到两个1就进行一次划分 然后把每段提取出来单独处理 如果把提出来的01串计为\(s[1...r]\)…

巧用 using 作用域(IDisposable)的生命周期包装特性 实现前后置处理

需求:在多个方法前后输出日志 logger.Info("begin"); method(); logger.Info("end");如果需要在方法后输出日志同时加上时长 logger.Info("begin"); var sw= Stopwatch.StartNew(); me…

2025.10.27训练记录

其实是10.28晚上写的。感觉就这个题要记录一下。 上午noip模拟。喜提一道不会。 B 题外话: 7:45 开始考试,广附集训爷大吼一声我做过!声称A完全不可做,但B他场切了。于是我开场看B。 那就看B,7:50闭了一下眼睛,睁…

软考复习总结

距离软考还有不到十天,主要对学习的知识点进行总结回顾(以下知识点无顺序重点): 1.对于尾数用补码进行表示时,要注意如果机器位8位,已知补码包含一位符号位,则补码真值的范围(-2n-1,2n-1 - 1), 则将其转换为…

实用指南:Eclipse 透视图(Perspective)

pre { white-space: pre !important; word-wrap: normal !important; overflow-x: auto !important; display: block !important; font-family: "Consolas", "Monaco", "Courier New", …