Computer Science, asked by adityawesome8252, 1 year ago

पैरामीटराइज्ड कंस्ट्रक्टरस क्या होते हैं?

Answers

Answered by Anonymous
0

Answer:

Introduction for Constructor

Constructor ये एक special type का member function होता है, जो अपने class के नाम के जैसा होता है |

जिस class का constructor बना हो, अगर उसी class का जब object जब बनता है तब वो automatically call होता है |

constructor का कोई return type नहीं होता | void भी return नहीं करता |

अगर कोई value को initialize करना हो तो अलग से उसका member function बनाकर उसे object के साथ access करना पड़ता है | Constructor ये काम सिर्फ object बनाते ही कर देता है |

Constructor के साथ virtual keyword का इस्तेमाल नहीं किया जाता |

Explanation:

Hope this will helps you

Similar questions