扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
构造函数是类中特殊的成员函数。
在和平等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供成都网站设计、成都网站制作 网站设计制作按需定制,公司网站建设,企业网站建设,成都品牌网站建设,成都营销网站建设,成都外贸网站制作,和平网站建设费用合理。创建类类型的新对象的,系统会自动调用构造函数。
构造函数的调用是为了保证每个数据成员都能被正确初始化。
构造函数的作用初始化。
通常情况下,构造函数应声明为公有函数,构造它不能像其他成员函数那样被显式的调用。
构造函数被声明为私有有特殊的用途。
构造函数可以有任意类型和任意个数的参数,一个类可以有多个构造函数。
如果程序未声明构造函数,默认会生成一个空的构造函数。
不带参数的构造函数称为默认构造函数。
如果有一个构造函数,系统不再生成默认构造函数
Test.h
- //Test.h
- # ifndef _TEST_H_
- # define _TEST_H_
- class
- public如果程序未声明构造函数,默认会生成一个空的构造函数
- private
- int
- # endif //_TEST_H_
Test.cpp
- //Test.cpp
- # include "Test.h"
- # include
- usingnamespace
- "Initializing Default "
main.cpp
- # include
- # include "Test.h"
- usingnamespace
- intvoid
- return
运行结果:
// 如果有一个构造函数,系统不再生成默认构造函数
Test.h
- //Test.h
- # ifndef _TEST_H_
- # define _TEST_H_
- class Test
- {
- public: //如果程序未声明构造函数,默认会生成一个空的构造函数
- Test(int num);
- private:
- int num_;
- };
- # endif //_TEST_H_
Test.cpp
- //Test.cpp
- # include "Test.h"
- # include
- using namespace std;
- Test::Test(int num)
- {
- num_ = num;
- cout << "Initializing " << num_ << endl;
- }
main.cpp
- # include
- # include "Test.h"
- using namespace std;
- int main(void)
- { //自动调用构造函数
- Test t(10);
- return 0;
- }
运行结果:
构造函数重载的实例:
Test.h
- //Test.h
- # ifndef _TEST_H_
- # define _TEST_H_
- class Test
- {
- public: //如果程序未声明构造函数,默认会生成一个空的构造函数
- Test();
- Test(int num);
- private:
- int num_;
- };
- # endif //_TEST_H_
Test.cpp
- //Test.cpp
- # include "Test.h"
- # include
- using namespace std;
- Test::Test()
- {
- num_ = 0;
- cout << "Initializing default " << endl;
- }
- Test::Test(int num)
- {
- num_ = num;
- cout << "Initializing " << num_ << endl;
- }
main.cpp
- # include
- # include "Test.h"
- using namespace std;
- int main(void)
- { //自动调用构造函数
- Test t1;
- Test t2(10);
- return 0;
- }
运行结果:
构造函数与new运算符
- //构造函数与new运算符
- # ifndef _TEST_H_
- # define _TEST_H_
- class
- public
- ////可以显式的写一个默认构造函数,这样两个函数就成了重载
- int
- //析构函数不能重载
- //析构函数不能带参数,如果带参数就可以重载
- void
- private
- int
- # endif
Test.cpp
- # include "Test.h"
- # include
- usingnamespace
- void
- "Initializing Default"
- int
- "Initializing "
- "Destory "
main.cpp
- # include
- # include "Test.h"
- usingnamespace
- intvoid
- //不仅仅分配了内存,还调用了构造函数
- new//new operator
- //不仅仅释放了内存,也调用了析构函数
- delete
- return
运行结果:
//全局对象的构造先于main函数
- # ifndef _TEST_H_
- # define _TEST_H_
- class Test
- {
- public:
- ////可以显式的写一个默认构造函数,这样两个函数就成了重载
- Test();
- Test(int num);
- //析构函数不能重载
- //析构函数不能带参数,如果带参数就可以重载
- ~Test();
- void Display();
- private:
- int num_;
- };
- # endif
Test.cpp
- # include "Test.h"
- # include
- using namespace std;
- void Test::Display()
- {
- cout << num_ << endl;
- }
- Test::Test()
- {
- num_ = 0;
- cout<<"Initializing Default" << endl;
- }
- Test::Test(int num)
- {
- num_ = num;
- cout<<"Initializing "<
- }
- Test::~Test()
- {
- cout << "Destory " << num_ << endl;
- }
main.cpp
- # include "Test.h"
- usingnamespace
- //全局对象的构造先于main函数
- intvoid
- "Entering main ..."
- "Exiting main ..."
- return
运行结果:
默认析构函数是一个空函数
析构函数没有参数
析构函数不能被重载
析构函数与数组
Test.h
- //Test.h
- # ifndef _TEST_H_
- # define _TEST_H_
- class
- public
- ////可以显式的写一个默认构造函数,这样两个函数就成了重载
- int
- //析构函数不能重载
- //析构函数不能带参数,如果带参数就可以重载
- void
- private
- int
- # endif //_TEST_H_
Test.cpp
- //Test.cpp
- # include
- # include "Test.h"
- usingnamespace
- void
- "Initializing Deafule "
- int
- "Initializing "
- "Destory "
main.cpp
- //main.cpp
- # include
- # include "Test.h"
- usingnamespace
- intvoid
- //定义对象数组
- //动态对象
- new//传递参数2
- delete
- //没有传递任何参数,创建了两个对象
- new
- delete
- return
运行结果:
析构函数不能重载
析构函数不能带参数,如果带参数就可以重载
析构函数可以显式调用,一般很少用到,会实现一些特殊的效果:
- //main.cpp
- # include "Test.h"
- intvoid
- //析构函数被调用了两次
- //析构函数很少调用,可以显式调用
- return
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流