当前位置: 首页 > news >正文

C++默认构造函数(二)

目录

构造函数补充

构造函数初始化列表的使用

赋值运算符重载函数

运算符重载函数介绍

运算符重载函数的使用

赋值运算符重载函数

赋值运算符重载函数的使用

拷贝构造函数和赋值运算符重载函数

重载前置++和后置++

前置++

后置++

重载流插入<<与流提取>>

流插入运算符<<重载

流提取运算符>>重载

const成员函数

取地址操作符重载与const成员取地址操作符重载

实现日期类练习


声明:本篇为C++默认构造函数最后一篇

构造函数补充

在C++中,可以在构造函数的函数体中为变量进行初始化,但是实际上该过程并不是初始化,可以理解为赋值,因为对象还没有真正创建,并且初始化只能初始化一次,但是赋值可以执行多次,而当对象创建时,所有成员变量就是当成整体创建,那么每一个变量在和何处被初始化变成了一个问题,为了解决这个问题,C++标准中引入构造函数初始化列表,只要是本类的成员变量都是在初始化列表处初始化,具体初始化的内容由程序员自己决定


#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 23):_year(year), _month(month), _day(day){}void print(){cout << _year << "/" << _month << "/" << _day << endl;}
};int main()
{Date d;d.print();return 0;
}
输出结果:
2024/3/23

构造函数初始化列表的使用

初始化列表:以一个冒号开始,接着是一个以逗号分隔的数据成员列表,每个"成员变量"后面跟一个放在括号中的初始值或表达式,语法如下

类名(参数列表)
:成员变量(值)
,成员变量(值)
,成员变量(值)
{}

📌

注意,并不是所有成员变量都需要写进初始化列表,没写入初始化列表的成员变量也会像写入初始化列表中的成员变量一样走一遍初始化列表,只是没有显式

1. 每个成员变量在初始化列表中只能出现一次(初始化只能初始化一次)

2. 类中包含以下成员,必须放在初始化列表位置进行初始化:

  1. 引用成员变量
#include <iostream>
#include <cstdlib>
#include <cassert>
using namespace std;class Array
{
private:int* _arr;int _size;int& ref;
public:Array():_arr(nullptr), _size(4), ref(_size)//引用类型必须初始化{_arr = (int*)malloc(sizeof(int) * _size);assert(_arr);}Array(const Array& data):ref(_size)//拷贝构造中,引用类型也必须初始化{_arr = (int*)malloc(sizeof(int) * data._size);assert(_arr);for (int i = 0; i < data._size; i++){_arr[i] = data[i];}}//重载[]int& operator[](int i){return _arr[i];}//const类型的引用,不可以通过返回的引用改变数组中的值const int& operator[](int i) const{return _arr[i];}
};int main()
{Array a;for (int i = 0; i < 4; i++){a[i] = i + 1;}const Array p(a);for (int i = 0; i < 4; i++){cout << p[i] << " ";}return 0;
}
输出结果:
1 2 3 4

  1. const成员变量
  2. 自定义类型成员(且该类没有默认构造函数时)
#include <iostream>
using namespace std;class Time
{
private:int _time;
public:Time(int time){}
};class Date
{
private:int _year;int _month;int _day;Time _t;
public:Date():_year(2023),_month(3),_day(21){}
};int main()
{Date d;return 0;
}
报错信息:
类 "Time" 不存在默认构造函数

在C++11标准规范中,可以在成员变量创建的同时给缺省值,此时如果给了这个缺省值,想使用缺省值时就不需要再将该成员变量写入初始化列表中,如果不想使用缺省值,则将成员变量写入初始化列表中并给定初始值,否则默认初始值为0

#include <iostream>
using namespace std;//构造函数初始化列表
class Date
{
private:int _year = 2023;int _month = 2;int _day = 28;
public:Date()//_year没有写入初始化列表,使用缺省值: _month(3)//写入初始化列表中,给了初始值为3,使用初始值, _day()//写入初始化列表中,但是没给初始值,默认初始值为0{}void print(){cout << _year << "/" << _month << "/" << _day << endl;}
};int main()
{Date d;d.print();return 0;
}
输出结果:
2023/3/0

在初始化列表中无法处理例如动态申请内存的行为,此时可以在函数体内完成,例如

#include <iostream>
#include <cstdlib>
#include <cassert>
using namespace std;class Array
{
private:int* _arr;int _size;
public:Array():_arr(nullptr),_size(4){_arr = (int*)malloc(sizeof(int) * _size);//在构造函数体中分配空间assert(_arr);}Array(const Array& data){_arr = (int*)malloc(sizeof(int) * data._size);assert(_arr);for (int i = 0; i < data._size; i++){_arr[i] = data[i];}}//重载[]int& operator[](int i){return _arr[i];}const int& operator[](int i) const{return _arr[i];}
};int main()
{Array a;for (int i = 0; i < 4; i++){a[i] = i + 1;}const Array& p(a);for (int i = 0; i < 4; i++){cout << p[i] << " ";}return 0;
}
输出结果:
1 2 3 4

所以,如果不使用缺省值,尽量使用初始化列表初始化,因为不管是否使用初始化列表,对于自定义类型的成员变量,一定会先使用初始化列表初始化

📌

注意:成员变量在类中声明次序就是其在初始化列表中的初始化顺序,与其在初始化列表中的先后次序无关

class A
{
public:A(int a):_a1(a),_a2(_a1){}void Print() {cout<<_a1<<" "<<_a2<<endl;}
private:int _a2;int _a1;
};
int main() {A aa(1);aa.Print();
}
输出结果:
1 -858993460

在上面的代码中,因为成员变量_a2_a1先声明,所以在初始化时先走_a2(_a1),所以_a2被初始化为随机值,接着再初始化_a1,所以_a1为1

赋值运算符重载函数

运算符重载函数介绍

在C++中,为了增强代码的可读性引入了运算符重载,运算符重载是具有特殊函数名的函数,也具有其返回值类型,函数名字以及参数列表,其返回值类型与参数列表与普通的函数类似

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}
};int main()
{Date d1;Date d2(d1);cout << (d1 == d2) << endl;//自定义类型无法使用内置的关系运算符进行比较return 0;
}
报错信息:
二进制“==”:“Date”不定义该运算符或到预定义运算符可接收的类型的转换

为了自定义类型的对象之间可以进行关系运算,可以使用运算符重载,如下面代码

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}int getYear(){return _year;}int getMonth(){return _month;}int getDay(){return _day;}
};bool operator==(Date& d1, Date& d2)
{return d1.getYear() == d2.getYear() && d1.getMonth() == d2.getMonth() && d1.getDay() == d1.getDay();
}int main()
{Date d1;Date d2(d1);cout << (d1 == d2) << endl;//有重载==的函数时可以比较return 0;
}
输出结果:
1

运算符重载函数的使用

对于运算符重载函数来说,其函数名为:operator+需要重载的运算符,而该函数的原型如下:

函数返回类型 operator运算符(参数列表)

定义运算符重载函数时,需要注意下面的问题

  1. 不能通过连接其他符号来创建新的操作符:比如operator@
  2. 重载操作符必须有一个类类型参数
  3. 用于内置类型的运算符,其含义不能改变,例如:内置的整型+,不 能改变其含义
  4. 作为类成员函数重载时,其形参看起来比操作数数目少1,因为成员函数的第一个参数为隐藏的this
  5. .* :: sizeof ?: . :注意以上5个运算符不能重载

对于下面的代码

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}int getYear(){return _year;}int getMonth(){return _month;}int getDay(){return _day;}
};//全局运算符重载函数
bool operator==(Date& d1, Date& d2)
{return d1.getYear() == d2.getYear() && d1.getMonth() == d2.getMonth() && d1.getDay() == d1.getDay();
}int main()
{Date d1;Date d2(d1);cout << (d1 == d2) << endl;//有重载==的函数时可以比较return 0;
}
输出结果:
1

在上面的代码中,因为运算符重载函数不在类中,并且因为类的成员变量为private,所以需要调用获取函数来得到当前对象的成员变量中的值,并且因为在全局中,并不存在哪一个对象调用函数,所以没有this指针,此时形参的个数对应运算符的操作数的个数

📌

注意上面的全局运算符重载函数中形参不可以使用const修饰,因为如果使用了const修饰,那么就是d1d2都是const修饰的对象,而this只是*const,而不是const*,本来是d1d2const修饰不可以修改引用的对象的值,但是如果传递给了this可能会出现通过this改变d1d2引用的对象的值,所以此处涉及到将引用的权限放大

考虑到如果将运算符重载函数写在类外需要额外写三个函数来获取到指定的值,所以可以将运算符重载函数写进类中

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}//类中的运算符重载函数bool operator==(const Date& d){return _year == d._year && _month == d._month && _day == d._day;}
};int main()
{Date d1;Date d2(d1);cout << (d1 == d2) << endl;//直接调用类中实现的运算符重载函数//上面的代码相当于:cout << d1.operator==(d2) << endl;return 0;
}
输出结果:
1

在上面的代码中,因为运算符重载函数在类中,所以存在this指针,所以只需要传递一个参数(加上this指针参数和额外的参数一共两个参数对应==操作符的操作数个数),并且形参对象引用d指的是第二个操作数,因为d1 == d2等价于d1.operator==(d2),因为是d1在调用运算符重载函数,所以this指针指向的对象即为d1

赋值运算符重载函数

赋值运算符重载函数也是运算符重载函数中的一种,因为重载的运算符为赋值运算符=,重载赋值运算符时,首先不能改变赋值运算符的特性,包括连续赋值

赋值运算符重载函数的使用

赋值运算符重载函数的格式

  • 参数类型:const T&,传递引用可以提高传参效率(T为类名)
  • 返回值类型:T&,返回引用可以提高返回的效率,有返回值目的是为了支持连续赋值,并且需要检测是否自己给自己赋值,以减少赋值次数
  • 返回*this :要复合连续赋值的含义
#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}void operator=(const Date& d){_year = d._year;_month = d._month;_day = d._day;}
};int main()
{Date d(2024, 2, 28);Date d1;d1 = d;d1.print();return 0;
}
输出结果:
2024/2/28

在上面的代码中,类Date中对赋值运算符进行了重载,将引用指向的对象中的值给调用该运算符重载函数的对象,但是上面的代码无法实现赋值运算符的连续赋值,因为没有返回值

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}void operator=(const Date& d){_year = d._year;_month = d._month;_day = d._day;}
};int main()
{Date d(2024, 2, 28);Date d1;Date d2;d1 = d;d1.print();d2 = d1 = d;return 0;
}
报错信息:
二元“=”: 没有找到接受“void”类型的右操作数的运算符(或没有可接受的转换)

所以,为了解决这个问题,赋值运算符重载函数需要给定返回值为类类型

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}Date& operator=(const Date& d){_year = d._year;_month = d._month;_day = d._day;return *this;}
};int main()
{Date d(2024, 2, 28);Date d1;Date d2;d2 = d1 = d;d1.print();d2.print();return 0;
}
输出结果:
2024/2/28
2024/2/28

在上面的代码中,赋值运算符重载函数给了返回值为Date类型的引用,此时可以使用连续赋值,因为赋值运算符从右往左结合,所以具体过程为d对象赋值给d1,d1对象的值赋值给d2,从函数调用的角度理解为d2.operator=(d1.operator=(d));(注意不是d2.operator=(d1).operator=(d);,本句理解为d2被赋值为d1中的内容,然后再被赋值为d中的内容,相当于d2 = d1; d2 = d;

📌

赋值运算符重载函数的返回值也可以不用引用,但是此时在返回时会调用拷贝构造函数将返回值的内容拷贝给调用赋值运算符重载函数的对象,为了减少调用拷贝构造的次数,更推荐使用引用,该解释同样适用于形参

另外,还有一个小问题,如果两个相同的对象进行赋值,那么将产生额外的一次赋值,对于这个问题,在赋值时需要判断形参引用的对象和this指针指向的对象是否是同一个地址的对象

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}Date& operator=(const Date& d){if (this != &d){_year = d._year;_month = d._month;_day = d._day;}return *this;}
};int main()
{Date d(2024, 2, 28);d = d;return 0;
}

在上面的代码中,判断this指针指向的对象的地址和引用的对象地址是否相等,如果二者相等,则证明是同一个对象,不需要进行赋值直接返回即可,注意形参的Date &d为创建对象的引用,而if语句中的&d是取引用的地址

注意,赋值运算符重载函数必须作为成员函数,不能作为全局函数

#include <iostream>
using namespace std;class Date
{
public:int _year;int _month;int _day;Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}
};
Date& operator=(Date& d1, Date& d)
{    if (&d1 != &d){d1._year = d._year;d1._month = d._month;d1._day = d._day;}return d1;
}
int main()
{Date d(2024, 2, 28);Date d1;d1 = d;return 0;
}
报错信息:
“operator=”必须是成员函数

赋值运算符如果不显式实现,编译器会生成一个默认的。此时用户再在类外自己实现一个全局的赋值运算符重载,就和编译器在类中生成的默认赋值运算符重载冲突了,所以赋值运算符重载只能是类的成员函数

拷贝构造函数和赋值运算符重载函数

与拷贝构造函数类似,赋值运算符重载函数如果用户没有实现,编译器会自动实现。默认如果不自主实现还是按照字节拷贝,按照字节方式拷贝也会遇到像拷贝函数一样的问题(指对象中有资源申请时)

  1. 一个对象改变,另一个对象也会跟着改变,严重者会数据覆盖
  2. 释放资源时会因为多次释放一个空间导致程序崩溃
#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}};int main()
{Date d(2024, 2, 28);Date d1;d1 = d;//编译器自动生成的默认赋值运算符重载函数Date d2(d);//编译器自动生成的拷贝构造函数d1.print();d2.print();return 0;
}
输出结果:
2024/2/28
2024/2/28

与拷贝构造函数一样,如果类对象中有涉及到资源申请,那么需要自己实现赋值运算符重载函数,否则直接使用默认的即可

重载前置++和后置++

前置++

对于运算符重载函数的使用规则,那么可以很容易写出++的重载函数,如下:

#include <iostream>
using namespace std;class Date
{
private:int _day;int _month;int _year;
public:Date(int year = 2024, int month = 3, int day = 22){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}void operator++(){_day += 1;}
};int main()
{Date d;++d;d.print();return 0;
}
输出结果:
2024/3/23

因为前++相当于计算+=1,而因为前面实现过获取X天后的日期的函数GetAfterXDays_plusEqual,所以可以直接用该函数进行复用,从而实现++操作

#include <iostream>
using namespace std;class Date
{
private:int _day;int _month;int _year;
public:Date(int year = 2024, int month = 3, int day = 22){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}int GetMonthDays(int year, int month){int monthDays[] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };if (month == 2 && ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)){return monthDays[month] + 1;}   else{return monthDays[month];}}Date& GetAfterXDays_plusEqual(int days){_day += days;while (_day > GetMonthDays(_year, _month)){_day -= GetMonthDays(_year, _month);_month++;if (_month == 13){_year++;_month = 1;}}return *this;}Date GetAfterXDays_plus(int days){Date tmp(*this);tmp._day += days;while (tmp._day > GetMonthDays(tmp._year, tmp._month)){tmp._day -= GetMonthDays(tmp._year, tmp._month);tmp._month++;if (tmp._month == 13){tmp._year++;tmp._month = 1;}}return tmp;}void operator++(){//因为++相当于+=1,所以可以直接复用GetAfterXDays_plusEqual(1)*this = GetAfterXDays_plusEqual(1);}
};int main()
{Date d;++d;d.print();return 0;
}
输出结果:
2024/3/23

注意到上面实现的++是无返回值的++运算符重载函数,但是如果函数没有返回值,将无法将++后的值给另外一个对象

#include <iostream>
using namespace std;class Date
{
private:int _day;int _month;int _year;
public:Date(int year = 2024, int month = 3, int day = 22){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}int GetMonthDays(int year, int month){int monthDays[] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };if (month == 2 && ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)){return monthDays[month] + 1;}   else{return monthDays[month];}}Date& GetAfterXDays_plusEqual(int days){_day += days;while (_day > GetMonthDays(_year, _month)){_day -= GetMonthDays(_year, _month);_month++;if (_month == 13){_year++;_month = 1;}}return *this;}Date GetAfterXDays_plus(int days){Date tmp(*this);tmp._day += days;while (tmp._day > GetMonthDays(tmp._year, tmp._month)){tmp._day -= GetMonthDays(tmp._year, tmp._month);tmp._month++;if (tmp._month == 13){tmp._year++;tmp._month = 1;}}return tmp;}void operator++(){//_day += 1;//因为++相当于+=1,所以可以直接复用GetAfterXDays_plusEqual(1)*this = GetAfterXDays_plusEqual(1);//return *this;}Date& operator=(const Date& d){if (this != &d){_year = d._year;_month = d._month;_day = d._day;}return *this;}
};int main()
{Date d;++d;d.print();Date d1;d1 = ++d;return 0;
}
报错信息:
二元“=”: 没有找到接受“void”类型的右操作数的运算符(或没有可接受的转换)

所以为了解决这种问题将考虑为++运算符重载函数加上返回值为类对象引用类型

#include <iostream>
using namespace std;class Date
{
private:int _day;int _month;int _year;
public:Date(int year = 2024, int month = 3, int day = 22){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}int GetMonthDays(int year, int month){int monthDays[] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };if (month == 2 && ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)){return monthDays[month] + 1;}   else{return monthDays[month];}}Date& GetAfterXDays_plusEqual(int days){_day += days;while (_day > GetMonthDays(_year, _month)){_day -= GetMonthDays(_year, _month);_month++;if (_month == 13){_year++;_month = 1;}}return *this;}Date GetAfterXDays_plus(int days){Date tmp(*this);tmp._day += days;while (tmp._day > GetMonthDays(tmp._year, tmp._month)){tmp._day -= GetMonthDays(tmp._year, tmp._month);tmp._month++;if (tmp._month == 13){tmp._year++;tmp._month = 1;}}return tmp;}Date& operator++(){//_day += 1;//因为++相当于+=1,所以可以直接复用GetAfterXDays_plusEqual(1)*this = GetAfterXDays_plusEqual(1);return *this;}Date& operator=(const Date& d){if (this != &d){_year = d._year;_month = d._month;_day = d._day;}return *this;}
};int main()
{Date d;++d;d.print();Date d1;d1 = ++d;return 0;
}
输出结果:
2024/3/23

后置++

上面的函数中实现了前置++,但是并没有实现后置++,如果在没有实现后置++时,使用后置++,则会出现下面的情况

#include <iostream>
using namespace std;class Date
{
private:int _day;int _month;int _year;
public:Date(int year = 2024, int month = 3, int day = 22){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}int GetMonthDays(int year, int month){int monthDays[] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };if (month == 2 && ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)){return monthDays[month] + 1;}else{return monthDays[month];}}Date& GetAfterXDays_plusEqual(int days){_day += days;while (_day > GetMonthDays(_year, _month)){_day -= GetMonthDays(_year, _month);_month++;if (_month == 13){_year++;_month = 1;}}return *this;}Date GetAfterXDays_plus(int days){Date tmp(*this);tmp._day += days;while (tmp._day > GetMonthDays(tmp._year, tmp._month)){tmp._day -= GetMonthDays(tmp._year, tmp._month);tmp._month++;if (tmp._month == 13){tmp._year++;tmp._month = 1;}}return tmp;}Date& operator++(){//_day += 1;//因为++相当于+=1,所以可以直接复用GetAfterXDays_plusEqual(1)*this = GetAfterXDays_plusEqual(1);return *this;}Date& operator=(const Date& d){if (this != &d){_year = d._year;_month = d._month;_day = d._day;}return *this;}
};int main()
{Date d;d++;return 0;
}
报错信息:
二进制“++”:“Date”不定义该运算符或到预定义运算符可接收的类型的转换

所以有前置++的实现并不能同时应用于后置++,对于后置++来说,编译器为了与前置++作区分,需要在形参位置添加一个整型占位形参,如下

#include <iostream>
using namespace std;class Date
{
private:int _day;int _month;int _year;
public:Date(int year = 2024, int month = 3, int day = 22){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}int GetMonthDays(int year, int month){int monthDays[] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };if (month == 2 && ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)){return monthDays[month] + 1;}else{return monthDays[month];}}Date& GetAfterXDays_plusEqual(int days){_day += days;while (_day > GetMonthDays(_year, _month)){_day -= GetMonthDays(_year, _month);_month++;if (_month == 13){_year++;_month = 1;}}return *this;}Date GetAfterXDays_plus(int days){Date tmp(*this);tmp._day += days;while (tmp._day > GetMonthDays(tmp._year, tmp._month)){tmp._day -= GetMonthDays(tmp._year, tmp._month);tmp._month++;if (tmp._month == 13){tmp._year++;tmp._month = 1;}}return tmp;}//前置++Date& operator++(){//_day += 1;//因为++相当于+=1,所以可以直接复用GetAfterXDays_plusEqual(1)*this = GetAfterXDays_plusEqual(1);return *this;}//后置++,但是为了不同于前置++,在形参处加入int形参作为占位便于编译器区分Date operator++(int){//后置++满足先使用再++,所以返回值为原值Date tmp(*this);*this = GetAfterXDays_plusEqual(1);return tmp;}Date& operator=(const Date& d){if (this != &d){_year = d._year;_month = d._month;_day = d._day;}return *this;}
};int main()
{Date d;d++;d.print();return 0;
}
输出结果:
2024/3/23

在上面的代码中,对于后置++重载函数来说,在形参处添加了一个int类型形参作为占位符,这个形参可以不给形参名,因为只是编译器用于区分

重载流插入<<与流提取>>

在C++标准库中,coutcin是属于iostreamostreamistream的对象,对于流插入<<运算符,之所以cout输出可以不用指定占位符编译器可以自动匹配的原因是ostream<<的运算符重载和函数重载,对于内置类型来说,有下面的函数重载

同样对于流提取运算符>>来说也是如此,如下图所示

但是流插入和流提取运算符并没有对自定义类型有函数重载,所以可以对流提取运算符和流插入运算符进行函数重载

流插入运算符<<重载

按照前面的运算符重载思路可以写出下面的代码

#include <iostream>
using namespace std;class Date
{
private:int _day;int _month;int _year;
public:Date(int year = 2024, int month = 3, int day = 22){_year = year;_month = month;_day = day;}void operator<<(ostream& cout){cout << _year << "/" << _month << "/" << _day << endl;}
};int main()
{Date d;cout << d;return 0;
}
报错信息:
二元“<<”: 没有找到接受“Date”类型的右操作数的运算符(或没有可接受的转换)

在上面的代码中,虽然重载了<<,但是形参是ostream流的对象,而隐含的形参是this,而在运算符重载函数形参列表的规则中,对于有两个操作数的运算符重载来说,第一个参数为左操作数,第二个参数为右操作数,所以上面的代码调用应该为d << cout

#include <iostream>
using namespace std;class Date
{
private:int _day;int _month;int _year;
public:Date(int year = 2024, int month = 3, int day = 22){_year = year;_month = month;_day = day;}void operator<<(ostream& cout){cout << _year << "/" << _month << "/" << _day << endl;}
};int main()
{Date d;//cout << d;d << cout;return 0;
}
输出结果:
2024/3/22

但是和正常的输出刚好顺序相反,所以这种方法需要改变,但是因为不能改变this在形参的位置,所以考虑到将<<重载放置到全局中,此时可以决定两个操作数的顺序,但是这个方法就不能使用this指针,并且需要考虑到成员变量的private属性,本处给出一种解决方案是使用get函数

#include <iostream>
using namespace std;class Date
{
private:int _day;int _month;int _year;
public:Date(int year = 2024, int month = 3, int day = 22){_year = year;_month = month;_day = day;}int getYear(){return _year;}int getMonth(){return _month;}int getDay(){return _day;}
};void operator<<(ostream& cout, Date& d)
{cout << d.getYear() << "/" << d.getMonth() << "/" << d.getDay() << endl;
}int main()
{Date d;cout << d;return 0;
}
输出结果:
2024/3/22

在上面的代码中,将流插入运算符重载函数放置到全局中可以控制coutd的顺序,此时即可写为cout << d,但是因为上面的<<并没有返回值,所以不可以连续插入,所以可以改进为如下

#include <iostream>
using namespace std;class Date
{
private:int _day;int _month;int _year;
public:Date(int year = 2024, int month = 3, int day = 22){_year = year;_month = month;_day = day;}int getYear(){return _year;}int getMonth(){return _month;}int getDay(){return _day;}
};ostream& operator<<(ostream& cout, Date& d)
{cout << d.getYear() << "/" << d.getMonth() << "/" << d.getDay() << endl;return cout;
}int main()
{Date d;Date d1;cout << d << d1 << endl;return 0;
}
输出结果:
2024/3/22
2024/3/22

流提取运算符>>重载

对于流提取运算符>>的重载类似于流插入运算符<<,但是此时不能使用获取函数,所以对于流提取运算符的重载来说,考虑用友元解决,使用友元可以让全局函数中的对象获取到private属性的变量

#include <iostream>
using namespace std;class Date
{
private:int _day;int _month;int _year;
public:Date(int year = 2024, int month = 3, int day = 22){_year = year;_month = month;_day = day;}//友元friend istream& operator>>(istream& cin, Date& d);int getYear(){return _year;}int getMonth(){return _month;}int getDay(){return _day;}
};ostream& operator<<(ostream& cout, Date& d)
{cout << d.getYear() << "/" << d.getMonth() << "/" << d.getDay() << endl;return cout;
}istream& operator>>(istream& cin, Date& d)
{cin >> d._year >> d._month >> d._day;return cin;
}int main()
{Date d;Date d1;cin >> d >> d1;cout << d << d1 << endl;return 0;
}
输入:
2024 2 28 2024 3 31
输出结果:
2024/2/28
2024/3/31

使用友元解决流插入运算符的重载函数

#include <iostream>
using namespace std;class Date
{
private:int _day;int _month;int _year;
public:Date(int year = 2024, int month = 3, int day = 22){_year = year;_month = month;_day = day;}//友元friend istream& operator>>(istream& cin, Date& d);friend ostream& operator<<(ostream& cout, Date& d);
};ostream& operator<<(ostream& cout, Date& d)
{cout << d._year << "/" << d._month << "/" << d._day << endl;return cout;
}istream& operator>>(istream& cin, Date& d)
{cin >> d._year >> d._month >> d._day;return cin;
}int main()
{Date d;Date d1;cin >> d >> d1;cout << d << d1 << endl;return 0;
}
输入:
2024 2 23 2022 3 31
输出结果:
2024/2/23
2022/3/31

const成员函数

const修饰的“成员函数”称之为const成员函数,const修饰类成员函数,实际修饰该成员函数隐含的this指针,表明在该成员函数中不能对类的任何成员进行修改

在前面的运算符重载函数中,当运算符重载函数在全局时不可以使用const修饰形式参数,因为const成员变量传递给成员函数时涉及到引用权限放大,那么const成员函数就是用来解决这种权限放大问题,可以将权限保持不变或者缩小,例如在下面的代码中

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}int getYear() const{return _year;}int getMonth() const{return _month;}int getDay() const{return _day;}
};//全局运算符重载函数,const形参
bool operator==(const Date& d1, const Date& d2)
{return d1.getYear() == d2.getYear() && d1.getMonth() == d2.getMonth() && d1.getDay() == d1.getDay();
}int main()
{Date d1;Date d2(d1);cout << (d1 == d2) << endl;//有重载==的函数时可以比较return 0;
}
输出结果:
1

在上面的代码中,使用const修饰了==运算符重载函数的两个形式参数,此时d1d2不可以被修改,当对象d1d2调用get系列函数时,成员函数的形式参数需要保证获得的权限不被放大,所以需要修饰形式参数,但是因为this指针不可以直接显式做形式参数,所以不可以使用const显式对this指针进行修饰,此时就需要将const放置到函数名后,作为修饰this指针的const以满足指针及引用权限不被放大

但是,如果==运算符重载函数中的两个形式参数并不是const修饰的变量,此时调用const成员函数也不会有错,因为此时是权限的缩小(从可修改到成员函数的不可修改),如下面的代码

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}void print(){cout << _year << "/" << _month << "/" << _day << endl;}int getYear() const{return _year;}int getMonth() const{return _month;}int getDay() const{return _day;}
};//全局运算符重载函数,非const形参
bool operator==(Date& d1, Date& d2)
{return d1.getYear() == d2.getYear() && d1.getMonth() == d2.getMonth() && d1.getDay() == d1.getDay();
}int main()
{Date d1;Date d2(d1);cout << (d1 == d2) << endl;//有重载==的函数时可以比较return 0;
}

对于const成员函数和非const成员函数之间也是如此

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}//非const成员函数void printYear(){cout << _year;}    int getYear() const{printYear();return _year;}
};int main()
{Date d1;Date d2(d1);return 0;
}
报错信息:
“void Date::printYear(void)”: 不能将“this”指针从“const Date”转换为“Date &”

而对于const成员函数和const成员函数之间可以直接调用

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}//非const成员函数void printYear() const{cout << _year;}    int getYear() const{printYear();return _year;}
};int main()
{Date d1;Date d2(d1);return 0;
}

同样非const成员函数可以调用const成员函数

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}//非const成员函数void printYear() const{cout << _year;}    int getYear() {printYear();return _year;}
};int main()
{Date d1;Date d2(d1);return 0;
}

取地址操作符重载与const成员取地址操作符重载

在C++中,这两个运算符重载函数可以不用显式定义,编译器会默认生成

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}};int main()
{Date d1;Date d2;const Date d3;cout << &d1 << endl;cout << &d2 << endl;cout << &d3 << endl;return 0;
}
输出结果:
00000031E9FEF628
00000031E9FEF658
00000031E9FEF688

也可以显式定义

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}Date* operator&(){return this;}const Date* operator&()const{return this;}};int main()
{Date d1;Date d2;const Date d3;cout << &d1 << endl;cout << &d2 << endl;cout << &d3 << endl;return 0;
}
输出结果:
0000006B086FFC38
0000006B086FFC68
0000006B086FFC98

只有特殊情况,才需要重载这两个函数,比如想让别人获取到指定的内容,让其访问非法地址

#include <iostream>
using namespace std;class Date
{
private:int _year;int _month;int _day;
public:Date(int year = 2024, int month = 3, int day = 21){_year = year;_month = month;_day = day;}Date* operator&(){return (Date*)0;}const Date* operator&()const{return (Date*)0;}};int main()
{Date d1;Date d2;const Date d3;cout << &d1 << endl;cout << &d2 << endl;cout << &d3 << endl;return 0;
}
输出结果:
0000000000000000
0000000000000000
0000000000000000

实现日期类练习

//头文件
#pragma once#include <iostream>
using namespace std;class Date
{
private:int _day;int _month;int _year;public://构造函数Date(int year = 2024, int month = 3, int day = 23):_year(year),_month(month),_day(day){}friend inline istream& operator>>(istream& cin, Date& d);friend inline ostream& operator<<(ostream& cout, Date& d);//获取月份日期函数int GetMonthDays(int year, int month);//+=运算符重载Date& operator+=(int days);//+运算符重载Date operator+(int days){Date tmp(*this);//复用+=重载tmp += days;return tmp;}//赋值运算符重载Date& operator=(const Date& d);//前置++运算符重载Date& operator++(){//复用+=重载*this += 1;return *this;}//后置++运算符重载Date operator++(int){//复用+=函数Date tmp(*this);tmp += 1;return tmp;}//>=运算符重载bool operator>=(const Date& d) const;//<=运算符重载bool operator<=(const Date& d) const;//<运算符重载bool operator<(const Date& d) const{//<的对立事件为>=,故直接对>=取反return !(*this >= d);}//>运算符重载bool operator>(const Date& d) const{//>的对立事件为<=,故直接对<=取反return !(*this <= d);}//==运算符重载bool operator==(const Date& d) const{return _year == d._year && _month == d._month && _day == d._day;}//!=运算符重载bool operator!=(const Date& d) const{//!=的对立事件为==,故直接对==取反return !(*this == d);}//-=运算符重载Date& operator-=(int days);//-运算符重载Date operator-(int days){Date tmp(*this);tmp._day -= days;return tmp;}//前置--运算符重载Date& operator--(){//复用-=重载函数*this -= 1;return *this;}//后置--运算符重载Date operator--(int){//复用-=重载Date tmp(*this);*this -= 1;return tmp;}//日期-日期int operator-(const Date& d);
};inline ostream& operator<<(ostream& cout, Date& d)
{cout << d._year << "/" << d._month << "/" << d._day << endl;return cout;
}inline istream& operator>>(istream& cin, Date& d)
{cin >> d._year >> d._month >> d._day;return cin;
}//实现文件
#define _CRT_SECURE_NO_WARNINGS 1
#include "Date_class.h"//获取月份日期函数
int Date::GetMonthDays(int year, int month)
{int monthDays[] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };if (month == 2 && (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0))){return monthDays[month] + 1;}return monthDays[month];
}//+=运算符重载
Date& Date::operator+=(int days)
{_day += days;while (_day > GetMonthDays(_year, _month)){_day -= GetMonthDays(_year, _month);_month++;if (_month == 13){_year++;_month = 1;}}return *this;
}//赋值运算符重载
Date& Date::operator=(const Date& d)
{if (this != &d){_year = d._year;_month = d._month;_day = d._day;}return *this;
}//>=运算符重载
bool Date::operator>=(const Date& d) const
{//如果年大就直接返回trueif (_year>d._year){return true;}else if(_year == d._year && _month > d._month)//年相等时比较月份,月份大就直接返回true{return true;}else if (_year == d._year && _month == d._month && _day > d._day)//年相等,月份相等时,天大就直接返回true{return true;}else//其他情况均返回false{return false;}
}//<=运算符重载
bool Date::operator<=(const Date& d) const
{//如果年小就直接返回trueif (_year < d._year){return true;}else if (_year == d._year && _month < d._month)//年相等时比较月份,月份小就直接返回true{return true;}else if (_year == d._year && _month == d._month && _day < d._day)//年相等,月份相等时,天小就直接返回true{return true;}else//其他情况均返回false{return false;}
}//-=运算符重载
Date& Date::operator-=(int days)
{_day -= days;while (_day <= 0){_month--;if (_month == 0){_year--;_month = 12;}_day += GetMonthDays(_year, _month);}return *this;
}//日期-日期
int Date::operator-(const Date& d)
{Date maxYear = *this;Date minYear = d;int flag = 1;if (maxYear < minYear){maxYear = d;minYear = *this;flag = -1;}int count = 0;while (maxYear != minYear){count++;++minYear;}return count * flag;
}//测试文件
#define _CRT_SECURE_NO_WARNINGS 1
#include "Date_class.h"int main()
{Date d;Date d1(d);Date d2(2023, 1, 1);d--;cout << d;cout << (d != d1) << endl;cout << (d >= d1) << endl;Date d3;d3 = --d2;cout << d3;Date d4(2023, 2, 7);d4 -= 100;cout << d4;cout << d4 - d1 << endl;Date d5;Date d6;cin >> d5 >> d6;cout << d5 << d6 << endl;return 0;
}
输入:
2024 3 23
2023 2 23
输出结果:
2024/3/22
1
0
2022/12/31
2022/10/30
-510
2024/3/23
2023/2/23

相关文章:

C++默认构造函数(二)

目录 构造函数补充 构造函数初始化列表的使用 赋值运算符重载函数 运算符重载函数介绍 运算符重载函数的使用 赋值运算符重载函数 赋值运算符重载函数的使用 拷贝构造函数和赋值运算符重载函数 重载前置和后置 前置 后置 重载流插入<<与流提取>> 流插…...

云原生部署手册02:将本地应用部署至k8s集群

&#xff08;一&#xff09;部署集群镜像仓库 1. 集群配置 首先看一下集群配置&#xff1a; (base) ➜ ~ multipass ls Name State IPv4 Image master Running 192.168.64.5 Ubuntu 22.04 LTS1…...

AJAX——JSON

目录 一、JSON概述 二、JSON对象语法 三、JSON序列化方法 四、JSON与XML比较 五、Java对象与Json对象的转换 六、Js解析服务器发送过来的JSON字符串 七、$.getJSON() 一、JSON概述 JSON简介:JSON的全称为JavaScript Object Nation(JavaScript 对象表示语法)&#xff0c;…...

Nexus3 Docker 私有仓库

Nexus3 Docker 私有仓库 安装并部署 Nexus3 $ docker search nexus3$ docker pull sonatype/nexus3$ mkdir /home/tester/data/docker/nexus3/sonatype-work $ sudo chown -R 200 /home/tester/data/docker/nexus3/sonatype-work$ docker run -d --namenexus3 \ --restartalw…...

Element UI el-dialog自由拖动功能

1.创建drag .js文件 /*** 拖拽移动* param {elementObjct} bar 鼠标点击控制拖拽的元素* param {elementObjct} target 移动的元素* param {function} callback 移动后的回调*/ export function startDrag(bar, target, callback) {var params {top: 0,left: 0,currentX: …...

RPC浅析,加密数据解析

个人总结 其实就是HOOK注入wbsocket 链接创建服务端和客户端进行通信&#xff0c;直接调用js代码中的加密方法 将结果通过浏览器客户端传入服务端。一种比较好实用的一种技术 https://blog.csdn.net/qq_36759224/article/details/123082574 &#xff08;搬运记录下&#xff…...

光速论文能用吗 #媒体#知识分享#学习方法

光速论文是一个非常有效的论文写作、查重降重工具&#xff0c;它的使用非常简单方便&#xff0c;而且功能强大&#xff0c;是每个写作者必备的利器。 首先&#xff0c;光速论文具有强大的查重降重功能&#xff0c;能够快速检测论文中的抄袭部分&#xff0c;帮助作者避免不必要的…...

智慧工地解决方案,智慧工地项目管理系统源码,支持大屏端、PC端、手机端、平板端

智慧工地解决方案依托计算机技术、物联网、云计算、大数据、人工智能、VR&AR等技术相结合&#xff0c;为工程项目管理提供先进技术手段&#xff0c;构建工地现场智能监控和控制体系&#xff0c;弥补传统方法在监管中的缺陷&#xff0c;最线实现项目对人、机、料、法、环的全…...

【前端寻宝之路】学习和使用label标签

&#x1f308;个人主页: Aileen_0v0 &#x1f525;热门专栏: 华为鸿蒙系统学习|计算机网络|数据结构与算法|MySQL| ​&#x1f4ab;个人格言:“没有罗马,那就自己创造罗马~” #mermaid-svg-2nm9oQQVtSL8hDS1 {font-family:"trebuchet ms",verdana,arial,sans-serif;f…...

项目————网络聊天室

服务器 #include <myhead.h> typedef struct msg{char flag;char name[20];char cont[128]; }msg_t;typedef struct link{struct sockaddr_in cin;struct link* next; }link_t;void do_login(int sfd,msg_t msg,link_t *L,struct sockaddr_in cin){link_t* pL;if(sendto…...

【计算机网络】基本概念

基本概念 IP 地址端口号协议协议分层封装分用客户端服务器请求和响应两台主机之间的网络通信流程 IP 地址 概念&#xff1a;IP 地址主要是用于唯一标识网络主机、其他网络设备&#xff08;如路由器&#xff09;的网络地址。简单来说&#xff0c;IP地址用来唯一定位主机。格式&…...

Redis入门到实战-第七弹

Redis实战热身Sets篇 完整命令参考官网 官网地址 声明: 由于操作系统, 版本更新等原因, 文章所列内容不一定100%复现, 还要以官方信息为准 https://redis.io/Redis概述 Redis是一个开源的&#xff08;采用BSD许可证&#xff09;&#xff0c;用作数据库、缓存、消息代理和流…...

图像处理学习笔记(一)

本文主要介绍&#xff0c;以供读者能够理解该技术的定义、原理、应用。 &#x1f3ac;个人简介&#xff1a;一个全栈工程师的升级之路&#xff01; &#x1f4cb;个人专栏&#xff1a;ISP处理 &#x1f380;CSDN主页 发狂的小花 &#x1f304;人生秘诀&#xff1a;学习的本质就…...

duckdb学习-1

DuckDB is a fast in-process analytical database DuckDB supports a feature-rich SQL dialect complemented with deep integrations into client APIs 在notebook中使用duckdb 安装 pip install duckdb 示例代码: #> pip install jupysql #> pip install duckdb-en…...

GEE高阶案例——Landsat/Sentinel/MODIS影像进行缨帽变换一行代码实现

本教程的主要目的是利用eemont中的tasseledCap()的函数进行缨帽变换实现。 在 eemont 中,可使用扩展到 ee.Image 和 ee.ImageCollection 对象的 tasseledCap 方法计算缨帽亮度、绿度和湿度组件。只需从支持的平台加载图像,然后使用 tasseledCap 添加分量带即可。 代码: !p…...

数独游戏(c++题解)

题目描述 给出一个的表格&#xff0c;部分格子已经填好数。请填完所有空白格子&#xff0c;使得表格每一行、每一列、每个的九宫格&#xff0c;都恰好填满这9个数字。 输入格式 9行9列的方阵状态&#xff0c;0代表空格。 输出格式 输出完成后的方阵状态&#xff0c;每一个…...

【开发方案】Android 应用双卡搜网功能

一、功能简介 需求:开机自动开始搜网并显示网络列表 那么就不能将相关类做成单例,不能将subId、phoneId等卡相关的属性作为UI、服务的全局变量。 二、流程设计 NetworkSelectReceiver:监听开机广播,触发拉起搜网服务 NetworkOperatorService:搜网服务,完成后调起用户…...

图论基础|深度优先dfs、广度优先bfs

dfs 与 bfs 区别 提到深度优先搜索&#xff08;dfs&#xff09;&#xff0c;就不得不说和广度优先搜索&#xff08;bfs&#xff09;有什么区别 先来了解dfs的过程&#xff0c;很多录友可能对dfs&#xff08;深度优先搜索&#xff09;&#xff0c;bfs&#xff08;广度优先搜索…...

Python从入门到精通秘籍十七

一、Python的构造方法 在Python中&#xff0c;构造方法是一个特殊的方法&#xff0c;用于创建和初始化类的实例。构造方法的名称是__init__()&#xff0c;它在创建对象时自动调用。 下面是一个示例代码来详细解释Python的构造方法&#xff1a; class Person:def __init__(se…...

Java——抽象类和接口

目录 1.抽象类 1.概念: 2.语法 3.特性 2.接口 1.概念 2.语法 3.特性 1.抽象类 1.概念: 在面向对象的概念中&#xff0c;所有的对象都是通过类来描绘的&#xff0c;但是反过来&#xff0c;并不是所有的类都是用来描绘对象的&#xff0c;如果一个类中没有包含足够的…...

7.4.分块查找

一.分块查找的算法思想&#xff1a; 1.实例&#xff1a; 以上述图片的顺序表为例&#xff0c; 该顺序表的数据元素从整体来看是乱序的&#xff0c;但如果把这些数据元素分成一块一块的小区间&#xff0c; 第一个区间[0,1]索引上的数据元素都是小于等于10的&#xff0c; 第二…...

C++_核心编程_多态案例二-制作饮品

#include <iostream> #include <string> using namespace std;/*制作饮品的大致流程为&#xff1a;煮水 - 冲泡 - 倒入杯中 - 加入辅料 利用多态技术实现本案例&#xff0c;提供抽象制作饮品基类&#xff0c;提供子类制作咖啡和茶叶*//*基类*/ class AbstractDr…...

利用ngx_stream_return_module构建简易 TCP/UDP 响应网关

一、模块概述 ngx_stream_return_module 提供了一个极简的指令&#xff1a; return <value>;在收到客户端连接后&#xff0c;立即将 <value> 写回并关闭连接。<value> 支持内嵌文本和内置变量&#xff08;如 $time_iso8601、$remote_addr 等&#xff09;&a…...

QMC5883L的驱动

简介 本篇文章的代码已经上传到了github上面&#xff0c;开源代码 作为一个电子罗盘模块&#xff0c;我们可以通过I2C从中获取偏航角yaw&#xff0c;相对于六轴陀螺仪的yaw&#xff0c;qmc5883l几乎不会零飘并且成本较低。 参考资料 QMC5883L磁场传感器驱动 QMC5883L磁力计…...

工程地质软件市场:发展现状、趋势与策略建议

一、引言 在工程建设领域&#xff0c;准确把握地质条件是确保项目顺利推进和安全运营的关键。工程地质软件作为处理、分析、模拟和展示工程地质数据的重要工具&#xff0c;正发挥着日益重要的作用。它凭借强大的数据处理能力、三维建模功能、空间分析工具和可视化展示手段&…...

数据链路层的主要功能是什么

数据链路层&#xff08;OSI模型第2层&#xff09;的核心功能是在相邻网络节点&#xff08;如交换机、主机&#xff09;间提供可靠的数据帧传输服务&#xff0c;主要职责包括&#xff1a; &#x1f511; 核心功能详解&#xff1a; 帧封装与解封装 封装&#xff1a; 将网络层下发…...

MySQL 8.0 OCP 英文题库解析(十三)

Oracle 为庆祝 MySQL 30 周年&#xff0c;截止到 2025.07.31 之前。所有人均可以免费考取原价245美元的MySQL OCP 认证。 从今天开始&#xff0c;将英文题库免费公布出来&#xff0c;并进行解析&#xff0c;帮助大家在一个月之内轻松通过OCP认证。 本期公布试题111~120 试题1…...

return this;返回的是谁

一个审批系统的示例来演示责任链模式的实现。假设公司需要处理不同金额的采购申请&#xff0c;不同级别的经理有不同的审批权限&#xff1a; // 抽象处理者&#xff1a;审批者 abstract class Approver {protected Approver successor; // 下一个处理者// 设置下一个处理者pub…...

十九、【用户管理与权限 - 篇一】后端基础:用户列表与角色模型的初步构建

【用户管理与权限 - 篇一】后端基础:用户列表与角色模型的初步构建 前言准备工作第一部分:回顾 Django 内置的 `User` 模型第二部分:设计并创建 `Role` 和 `UserProfile` 模型第三部分:创建 Serializers第四部分:创建 ViewSets第五部分:注册 API 路由第六部分:后端初步测…...

区块链技术概述

区块链技术是一种去中心化、分布式账本技术&#xff0c;通过密码学、共识机制和智能合约等核心组件&#xff0c;实现数据不可篡改、透明可追溯的系统。 一、核心技术 1. 去中心化 特点&#xff1a;数据存储在网络中的多个节点&#xff08;计算机&#xff09;&#xff0c;而非…...