Computer Science, asked by syapina5466, 11 months ago

इनहेरिटैंस का क्या उपयोग है?

Answers

Answered by suchindraraut17
0

इनहेरिटैंस का उपयोग

Explanation:

इनहेरिटैंस का इस्तेमाल से हम एक क्लास की प्रॉपर्टीस को दूसरे क्लास मे इस्तेमाल कर सकते है

इनहेरिटैंस बहुत तरीके के होते हैं, जो

1. Single Inheritance

2. Multiple Inheritance

3. Multilevel Inheritance

4. Hybrid Inheritance

5. Hierarchical Inheritance

//Simple Inheritance example for single inheritance in C# Language

public class ClassName1

{

   //statements

}  

public class ClassName2:ClassName1

{

   //Statements

}

//In Java, to inherit class we can use extends place of colon(:)

Similar questions