saving . . . saved what is constuctor has been deleted. what is constuctor has been hidden .
what is constuctor
Title
Question
what is constructor and explain.

Advanced-Cpp Constructor-And-Destructor 00-01 min 10-20 sec 20-10-16, 1:41 p.m. manugowda287@gmail.com

Answers:

A constructor in Java is a block of code similar to a method that's called when an instance of an object is created. Here are the key differences between a constructor and a method: A constructor doesn't have a return type. The name of the constructo must be the same as the name of the class.
08-11-16, 3:49 p.m. Macsb07
A constructor in Java is a block of code similar to a method that's called when an instance of an object is created. Here are the key differences between a constructor and a method: A constructor doesn't have a return type. The name of the constructor must be the same as the name of the class.
03-05-21, 4:43 p.m. saravana_7528

Login to add comment


constructor in Java is a block of code similar to a method that's called when an instance of an object is created. Here are the key differences between a constructor and a method: A constructordoesn't have a return type. The name of the constructo must be the same as the name of the class.
12-12-19, 11:41 a.m. ajaysuryamurugesan@gmail.com


<ul style="box-sizing: inherit; -webkit-tap-highlight-color: transparent; margin-right: 0px; margin-bottom: 1.618em; margin-left: 4rem; padding: 0px; color: rgb(77, 89, 104); line-height: 2; font-family: &quot;Nunito Sans&quot;, -apple-system, blinkmacsystemfont, &quot;Segoe UI&quot;, roboto, helvetica, arial, sans-serif; font-size: 18px; background-color: rgb(255, 255, 255);"><li style="box-sizing: inherit; -webkit-tap-highlight-color: transparent; list-style-type: disc; line-height: 2;">It is a special method that holds the same name as the class name and initializes the object whenever it is created. So it is simple and easy to execute.</li><li style="box-sizing: inherit; -webkit-tap-highlight-color: transparent; list-style-type: disc; line-height: 2;">It is mainly used for memory management. They are used to initialize and remove memory block when it is no longer required by having New and Delete options as specified by the programmer</li></ul>
29-02-20, 10:23 a.m. sarvani.anandarao@gmail.com


A constructor is a special type of member function of a class which initializes objects of a class. In C++, Constructor is automatically called when object(instance of class) create. It is special member function of the class because it does not have any return type. 
20-02-22, 4:52 p.m. sachinvalavi99@gmail.com


Log-in to answer to this question.