Inheritance in C++, Types of Inheritance Assignment Help

Assignment Help: >> C++ Programming >> Inheritance in C++, Types of Inheritance

Inheritance

In object-oriented programming (OOP), inheritance is the mode to recycle code of existent objects, establish the subtype from the existent object, or both, based on programming language support. In classical inheritance where objects are outlined by classes, classes could inherit conduct and attributes i.e., antecedently coded algorithms linked with the class from pre-existent classes referred as super classes or base classes or ancestor classes or derived classes. The new classes are referred as child classes or subclasses. The relationships of classes via inheritance renders acclivity to the hierarchy. In prototype-based programming, objects could be outlined at once from other objects without the requirement to specify any classes, in which event this characteristic is referred as differential inheritance.

Inheritance is the procedure by which new classes referred as derived classes are created from existent classes referred as base classes. The derived classes have all the characteristics of the base class and the programmer could choose to add new characteristics particular to the newly created derived class.

This conception of Inheritance contributes to the conception of polymorphism. Inheritance assists the code to be recycled in definite states of affairs. The base class is outlined and once it is compiled, it demand not be reworked. Using the conception of inheritance, the programmer could create as many derived classes from the base class as required while appending particular characteristics to each derived class as needed.

In Object Oriented Programming Inheritance is the procedure by which objects of one class acquire the attributes and functionality of objects of some  other class. It supports the conception of hierarchical classification. For illustration, the reptile robin is the component of the class flying reptile which is again the component of the class reptile.

One ground to employ inheritance is that it permits computer programmer to recycle code from the former project but renders computer programmer the flexibility to somewhat change it if the old code does not do precisely what computer programmer require for the new project. It does not make sense to begin every new project from attrition as some code will surely be duplicated in various programs and computer programmer had better strive to construct on what computer programmer did antecedent. In add-on, it is easy to make the error if computer programmer try to modify the master class, but computer programmer are less likely to make the error if computer programmer leave the master alone and only add to it. One more reason for employing inheritance is if the project demands the employ of respective classes which are very similar but somewhat different.

The rationale of inheritance is usable with various modern programming languages and is addressed somewhat different with each. C++ permits computer programmer to inherit all or component of the members and methods of the class, alter some and add new ones not usable in the parent class.

Inheritance is the procedure of creating new classes from the existent class or classes. Using inheritance, one could create general class that defines traits common to the set of related items. This class could then be inherited (recycled) by the other classes by employing the attributes of the existent ones with the add-on of its own unique attributes.

The old class is referred to as the base class and  new class, which is inherited from  base class is  referred as derived classes.

Types of Inheritance

1.    Single Inheritance

If the class is derived from the single base class, it is referred as as single inheritance.

2.    Multiple Inheritance

If the class is derived from more than one base class, it is referred as multiple inheritance

3.    Multilevel Inheritance

The classes could also be derived from the classes that are already derived. This type of inheritance is referred as multilevel inheritance.

4.    Hierarchical Inheritance

If the number of classes are derived from the single base class, it is referred as as hierarchical inheritance

Subclasses and super classes

A child class or subclass is the standard, derivative class that acquires one or more attributes from some  other class referred as the parent class or  base class or super class. The super class establishes the common interface and cornerstone practicality, which differentiated subclasses could supplement,  modify and  inherit. Since it unloads differentiated operations to the subclass, the super class is more recyclable.

A subclass might custom-made or delimitate the method transmitted from the super class. A method  outlined in this mode is referred as the virtual method.

Inheritance is employed to correlates two or more classes with each other. With the employment of inheritance computer programmer could employ the methods and the instance variables of different classes in any other classes.

Overriding

Many object-oriented programming languages let the  object or the class to substitute the execution of the aspect-typically the conduct-that it has transmitted. This procedure is in general referred as overriding. Overriding brings in the complexity, which edition of the conduct does the instance of the inherited class employment and the one that is component of its own class, or the one from the parent (base) class.  The answer varies among programming languages and some languages render the power to designate that the especial demeanor is not to be overridden and act consorting to the base class. For example, in C#, the overriding of the method will be assigned by the program. An option to overriding is hiding the inherited code.

Code recycle

One of the most former motives for employing inheritance was the recycle of code that so soon subsisted in some  other class. This exercise is in general referred as execution inheritance. Earlier in time,  the object-oriented prototype was in employment, one had to compose same functionality again and again. With inheritance, conduct of the super class could be transmitted by subclasses. It is not only potential to call the overridden conduct of the ancestor super class before bestowing other functionality, one could override the conduct of the ancestor altogether.

For illustration, when programming conduct of animal, there might be the class of reptile, of which all reptiles are derived. All reptiles might employ the practicality of crawling, but some might fly with the various techniques. Thus, crawling reptile might employ all the conduct of reptiles, or call it and add some other conduct for reptiles species. And some that cannot crawl anymore, will override it with the method having no conduct at all.

In to the highest degree fourth part, class inheritance for the exclusive aim of code recycle has descended out of privilege. The elementary concern is that execution inheritance does not render any authority of polymorphic substitutable, the instance of the recycling class cannot inevitably be interchanged for the instance of the inherited class. An substitute technique, delegation, involves more programming effort, but keeps off the substitutable issue. In C++ private inheritance could be employed as class of execution inheritance without substitutable. On the other hand public inheritance constitutes the is-the relationship and delegation constitutes the has-the relationship, private  inheritance could be believed as the is implemented in conditions of relationship.

Inheritance vs sub typing

Sub typing enables the afforded type to be replaced for some  other type or abstraction. Subtyping is aforementioned to demonstrate the is-the relationship among some existent abstraction, either explicitly or implicitly, calculating on language support. The relationship could be conveyed in an explicit manner via inheritance in languages that affirm inheritance as the subtyping mechanism.

In programming languages that do not accompaniment inheritance as the subtyping mechanism, the relationship among the derived class and the base class  is only the relationship among executions (i.e., the mechanism for code recycle), as equated to the relationship among forms. Inheritance, even in programming languages that accompaniment inheritance as the subtyping mechanism, does not inevitably implicate behavioral subtyping. It is altogether possible to derive the class whose object will behave falsely when employed in the context where the parent class is anticipated. In approximately, but not all OOP languages, the whims of subtyping and code recycle and  concur since the only mode to declare the subtype is to specify the new class that inherits the execution of some  other.

Restrictions and Alternatives

When employing inheritance in a widespread way in planning the program, one had better note sure restraints that it enforces.

For illustration, consider the class individual that contains the individual's name, phone number, address gender, race and age. Computer programmer could specify the subclass of Person referred as Student that contains the individual's grade point average and classes taken, and some  other subclass of individual referred as Employee that contains the individual's  employer , salary and job-title.

In defining this inheritance hierarchy computer programmer have already outlined definite restrictions, not all of which are suitable:

Design constraints

a)  Singleness:

Employing single inheritance, the subclass could inherit from only one superclass.  An individual could be either the Employee or the Student, but not both. Employing multiple inheritance partly figures out this issue, as one could then specify the Student Employee class that inherits from both Employe and Student. Despite anything to the contrary, it could still inherit from each superclass only at one time, this strategy does not affirm events in which the student attends two institutions or has  has two jobs.

The inheritance hierarchy of the object is constant at instantiation when the type  of the object is picked out and does not alter with time. For illustration, the inheritance graph does not permit the Student object to become the Employee object while holding the state of its Person superclass. Even though similar conduct could be achieved with the decorator pattern. Some have picked apart inheritance, arguing that it engages computer programmer into their master design standards.

c) Visibility:

At whatever time code on the client has access to the object, it by and large has access to all the object's superclass data. In spite of it,  if superclass has not been declared public,  client could still cast off the object to its superclass type. For illustration, there is no mode to give the function the pointer to the student's grade point average and transcript without also rendering that function access to all of  personal data laid in in Person superclass of the  student. Many modern languages, comprising C++ and Java, render the "protected" access modifier that permits subclasses to access the data, without permitting any code outside the chain of inheritance to access it. This predominately extenuates this matter.

The Composite recycle rationale is the substitute to inheritance. This technique affirms code reuse  and polymorphism by classifying behaviors from the primary class hierarchy and comprising particular conduct classes as called for in any business domain class. This approach path averts the static nature of the class hierarchy by permitting conduct adjustments at run time and permits the single class to carry out behaviors buffet-style, alternatively of being limited to the conducts of its ancestor classes.

d) Roles and inheritance

On certain occasions inheritance-based design is employed instead of roles. A role, say Student role of the Person describes the characteristic linked to the object that is present since the object encounters to take part in some relationship with some  other object (say the person in student role -has enrolled- to the classes). Some object-oriented design methods do not differentiate this employ of roles from more stationary panoramas of objects. In the way indicated there is the tendency to employ inheritance to model roles, say computer programmer would have the Student role of the Person modeled as the subclass of the Person. Still, neither the inheritance system nor the forms of the objects could alter with time.

As a consequence, modeling roles as subclasses could cause the functions to be constant on creation, say the Person cannot then in all likelihood alter his role from Student to Employee when the considerations alter. From modeling point of view, such confinements are oftentimes not suitable, since this causes artificial limitations on future extensile object system, which will make future alterations harder to carry out, because existent conception demands to be modified.

Inheritance is often better employed with the abstraction outlook, such that common vistas of instantiable classes are factored out to superclasses; for example having the common superclass 'LegalEntity' for both Company and Person classes for all the general views of both. The differentiation among role established design and inheritance established design could be made established on the stability of the prospect. Role based design had better be employed when it is  imaginable that the similar object participates in various roles at various times and inheritance based design had better be employed when the common aspects of multiple classes (not objects!) are factored as superclasses and do not alter with time.

1.    Virtual Methods

The functionality of virtual functions could be overridden in its derived classes. The programmer must pay attention not to confuse this conception with function overloading. Function overloading is the various conception and will be explained in later sections of this tutorial. Virtual function is the mechanism to carry out the conception of polymorphism (the ability to give various meanings to one function).

The vital reason for having the virtual function is to carry out the various functionality in the derived class.

For illustration: 

The Make function in the class Vehicle might have to make the Vehicle with red color. A class referred as Four Wheeler, derived or inherited from Vehicle, might have to employ the blue background and 4 tires as wheels. For this scenario, the Make function for Four Wheeler had better now have the various functionality from the one at the class referred as Vehicle. This conception is referred as Virtual Function.

Attributes of Virtual Functions:

Virtual Functions are resolved  by dynamic binding or on run-time. Virtual functions are also the  elementary member functions. The main difference among the non-virtual C++ member function and the virtual member function is in the mode they are both resolved. A non-virtual C++ member function is resolved during compile time or static binding. Virtual Functions are settled during run time or dynamic binding

ñ  Virtual functions are declared with keyword virtual.

ñ  Virtual functions are the member functions of  class.

ñ  Virtual function takes various functionality in  derived class.

Students can get solutions for Inheritance in C++  online. ExpertsMinds interactive academic session will make learning  Inheritance in C++ easy. Get answers online to all the questions, assignments, homework on Inheritance in C++ , under the expert guidance of our tutors. Expertsmind.com offers Inheritance in C++ online tutoring service,  Inheritance in C++ homework help and Inheritance in C++ anytime from anywhere 24x7.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd