Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Example introduction of constructor and destructor in C++

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article introduces the knowledge of "introduction of constructors and destructors in C++". Many people will encounter this dilemma in the operation of actual cases. then let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Catalogue

Constructor function

Default constructor

Parametric constructor

Destructor function

Examples of destructing functions

Timing of destructor execution

Local object

Global object

Constructor function

Constructor (constructor) is a special member function. It is executed each time a new object of the class is created. The name of the constructor is exactly the same as the name of the class and does not return any type. The constructor can be used to set initial values for some member variables.

Format:

Class::Class (); / / Constructor default constructor

If the user does not define a constructor, the C++ system automatically generates a default constructor. The constructor body is empty, has no parameters, and does not perform initialization operations.

For example:

Time.h:

Class Time {private: int hour; int minute; int second;public: Time (); / / default constructor void set_time (int h, int m, int s); void show_time ();}

Time.cpp:

# include "Time.h" # include using namespace std;Time::Time () {hour = 0; minute = 0; second = 0;} void Time::set_time (int h, int m, int s) {hour = h; minute = m; second = s;} void Time::show_time () {cout

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report