adspace


What is a constructor in c++ with example?

Answer Posted / Pranaw Kumara

In C++, a constructor is a special function that's used to initialize objects. The constructor has the same name as its class and has no return type (except for the bool constructor). Here's an example:n```cppnclass Rectangle {n private:n int width;n int height;nn public:n Rectangle(int width, int height) : width(width), height(height) {}n // ... other methods and members heren};nnint main() {n Rectangle rect(5, 10); // Calling constructor to create a new objectn return 0;n}n```

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

daily Routine of father

1485


How c functions prevents rework and therefore saves the programers time as wel as length of the code ?

1165


Can union be self referenced?

1268


What is the latest version on c++?

1209


What character terminates all character array strings a) b) . c) END

1397