News

Constructor-It is a special type of method that is invoked each time so that an object of a class is creatd. // Default constructor-It is automaticaly generated by a compiler. // Rules to create a ...
Copy Constructor is a type of constructor which is used to create a copy of an already existing object of a class type. It is usually of the form X (X&), where X is the class name. The compiler ...