एक वर्ग को एक से अधिक वर्ग या इंटरफ़ेस से प्राप्त किया जा सकता है, जिसका अर्थ है कि यह कई आधार वर्गों या इंटरफेस से डेटा और कार्यों को इनहेरिट कर सकता है।
उदाहरण के लिए, निम्नलिखित व्युत्पन्न वर्गों के साथ वाहन आधार वर्ग।
Truck Bus Motobike
व्युत्पन्न वर्ग बेस क्लास सदस्य चर और सदस्य विधियों को विरासत में लेता है।
उसी तरह, आकृति वर्ग के लिए व्युत्पन्न वर्ग आयत हो सकता है जैसा कि निम्न उदाहरण में है।
उदाहरण
using System; namespace Program { class Shape { public void setWidth(int w) { width = w; } public void setHeight(int h) { height = h; } protected int width; protected int height; } // Derived class class Rectangle: Shape { public int getArea() { return (width * height); } } class Demo { static void Main(string[] args) { Rectangle Rect = new Rectangle(); Rect.setWidth(5); Rect.setHeight(7); // Print the area of the object. Console.WriteLine("Total area: {0}", Rect.getArea()); Console.ReadKey(); } } }
आउटपुट
Total area: 35