前言
如果一个类中什么成员都没有,简称为空类。空类中什么都没有吗?并不是的,任何一个类在我们不写的情况下,都会自动生成下面6个默认成员函数。下面我们就来学习了解这些成员函数
一、构造函数
1.概念
下面我定义一个常见的日期类
class Date
{
public:
Date(int year, int month, int day)//构造函数
{
_year = year;
_month = month;
_day = day;
}
private:
int _year;
int _month;
int _day;
};
构造函数是一个特殊的成员函数,名字与类名相同,创建类类型对象时由编译器自动调用,保证每个数据成员都有 一个合适的初始值,并且在对象的生命周期内只调用一次。
2.特性
其特征如下:
1.函数名与类名相同
2.无返回值
3.对象实例化时编译器自动调用
4.构造函数可以重载
如:
class Date
{
public:
Date()//不带参的构造函数
{
}
Date(int year, int month, int day)//带参数的构造函数
{
_year = year;
_month = month;
_day = day;
}
//Date(int year =1, int month=1, int day=1)//带参数的构造函数,可以缺省
//{
// _year = year;
// _month = month;
// _day = day;
//}
private:
int _year;
int _month;
int _day;
};
int main()
{
Date a;//调用无参数构造函数
Date b(1, 2, 3);//调用带参构造函数
}
5.如果类中没有显式定义构造函数,则C++编译器会自动生成一个无参的默认构造函数,一旦用户显式定义编译器将不再生成。
6. 无参的构造函数和全缺省的构造函数都称为默认构造函数,并且默认构造函数只能有一个。注意:无参构造函数、全缺省构造函数、我们没写编译器默认生成的构造函数,都可以认为是默认成员函数。
7.编译器自己生成的默认函数在被调用时,对内置类型(int,double等)不做处理,对于自定义类型则会调用它的默认构造函数。
结论:
在大多数情况下我们都要自己写构造函数,一般只有少数情况可以让编译器默认生成。
列如:
1.类里的成员都是自定义成员,并且都要默认构造函数
2.如果还有内置类型成员,声明时给了缺省值
二、析构函数
1.概念
我们知道一个对象是如何初始化的,那它又是如何销毁的呢,析构函数:与构造函数功能相反,析构函数不是完成对象的销毁,局部对象销毁工作是由编译器完成的。而对象在销毁时会自动调用析构函数,完成类的一些资源清理工作。
2.特性
1.析构函数名是类名前面加上~
2.无返回值
3.一个类且有只有一个析构函数
4.对象销毁时,自动调用析构函数
class Date
{
public:
//默认生成的析构函数,内置类型成员不做处理,自定义类型成员会去调用它的析构函数
~Date()//析构函数,析构函数不能重载
{
;
}
private:
int _year;
int _month;
int _day;
};
5.编译自带的默认析构函数,会调用自定义类型的析构函数
3.拷贝构造函数
1.概念
构造函数:只有单个形参,该形参是对本类类型对象的引用(一般常用const修饰),在用已存在的类类型对象创建新对象时由编译器自动调用。
2.特征
1.拷贝构造函数是构造函数的重载形式
class Date
{
public:
Date(int year = 1, int month = 1, int day = 1 )//带参数的构造函数
{
_year = year;
_month = month;
_day = day;
}
~Date()//析构函数
{
;
}
Date(const Date& d)//拷贝构造函数
{
_year = d._year;
_month = d._month;
_day = d._day;
}
private:
int _year;
int _month;
int _day;
};
2.拷贝构造的参数只有一个且必须使用引用传参,使用引用传参会引起无穷递归调用
3.编译器自动生成的默认拷贝构造函数,对内置类型浅拷贝,对自定义类型成员会调用它的拷贝构造
结论:一般的类,自己生成拷贝构造就够用了。只有像Stack这样类,自己直接管理资源,需要自己写拷贝构造
4.运算符重载
1.运算符重载
C++为了增强代码的可读性引入了运算符重载,运算符重载是具有特殊函数名的函数,也具有其返回值类型,函数名字以及参数列表,其返回值类型与参数列表与普通的函数类似。
函数名字为:关键字operator后面接需要重载的运算符符号。
函数原型:返回值类型 operator操作符(参数列表)
注意:
1.不能通过连接其他符号来创建新的操作符:比如operator@
2.重载操作符必须有一个类类型或者枚举类型的操作数
3.用于内置类型的操作符,其含义不能改变,例如:内置的整型+,不 能改变其含义
4.作为类成员的重载函数时,其形参看起来比操作数数目少1成员函数的操作符有一个默认的形参this,限定为第一个形参
5。 .* 、:: 、sizeof 、?: 、. 注意以上5个运算符不能重载。
class Date
{
friend bool operator==(const Date & d1, const Date & d2);//友元函数
public:
Date(int year = 1, int month = 1, int day = 1 )//带参数的构造函数
{
_year = year;
_month = month;
_day = day;
}
~Date()//析构函数
{
;
}
Date(const Date& d)//拷贝构造函数
{
_year = d._year;
_month = d._month;
_day = d._day;
}
private:
int _year;
int _month;
int _day;
};
bool operator==(const Date& d1, const Date& d2)//定义在全局的operator==
{
return d1._year == d2._year
&& d1._month == d2._month
&& d1._day == d2._day;
}
int main()
{
Date a(1,1,3);//调用无参数构造函数
Date b(1, 2, 3);//调用带参构造函数
if (a == b)
{
cout << "相同" << endl;
}
else
{
cout << "不同" << endl;
}
}
2.赋值运算符重载
Date& operator=(const Date& d)
{
if (this != &d)
{
_year = d._year;
_month = d._month;
_day = d._day;
}
}
- 参数类型
- 返回值
- 检测是否自己给自己赋值
- 返回*this
- 一个类如果没有显式定义赋值运算符重载,编译器也会生成一个,完成对象按字节序的值拷贝。
class Date
{
friend bool operator==(const Date & d1, const Date & d2);
public:
Date(int year = 1, int month = 1, int day = 1 )//带参数的构造函数
{
_year = year;
_month = month;
_day = day;
}
~Date()//析构函数
{
;
}
Date(const Date& d)//拷贝构造函数
{
_year = d._year;
_month = d._month;
_day = d._day;
}
Date& operator=(const Date& d)
{
if (this != &d)
{
_year = d._year;
_month = d._month;
_day = d._day;
}
}
private:
int _year;
int _month;
int _day;
};
int main()
{
Date a(1,1,3);//调用无参数构造函数
Date b(1, 2, 3);//调用带参构造函数
a = b;// 这里d1调用的编译器生成operator=完成拷贝,d2和d1的值也是一样的。
}
5.取地址及const取地址操作符重载
这两个默认成员函数一般不用重新定义 ,编译器默认会生成。
class Date
{
public :
Date* operator&()
{
return this ;
}
const Date* operator&()const
{
return this ;
}
private :
int _year ; // 年
int _month ; // 月
int _day ; // 日
};
这两个运算符一般不需要重载,使用编译器生成的默认取地址的重载即可,只有特殊情况,才需要重载,比如想让别人获取到指定的内容!
总结
以上就是关于类的默认六大成员函数的全部内容,希望对大家有所帮助,感谢观看!