How do you implement multiple inheritance in .NET?
Answers were Sorted based on User's Feedback
Answer / vijay sharma
We can use interfaces to achieve multiple inheritance
in .NET
Is This Answer Correct ? | 49 Yes | 2 No |
Answer / vijay rana
with the help of interface we can achieve multiple
inheritense in csharp;
Is This Answer Correct ? | 25 Yes | 2 No |
The actual answer is. We cannot provide multiple
inheritance in C#. Multiple inheritance means having a
common implementation from two base class derived in the
child class which is not possible. Using interface we just
provide the prototype which we can implement in the derived
classing which provides a mimic of multiple inheritance. If
am wrong please let me know.
Thanks And Regards
Mahesh Kotekar
Is This Answer Correct ? | 13 Yes | 3 No |
Answer / kamal
When we use the Multiple inheritance we use more than one
class. Lets one condition class A and class B are base
classes and class c is is multiple inherting it.And where
class c is inheriting a function .It may be possible that
this function with same name and same signature can present
in both class A and Class B . That time how the compiler
will know that which function it should take whether from
class A or class B.So Multiple inheritance show's an error.
Is This Answer Correct ? | 7 Yes | 3 No |
Answer / ashish
Dear All,
Please help me I am confused with concept of interface.
Every book and every post says that multiple inheritance is
achived by interface as a class implement more then 1
interfacet, but is it really a multiple inheriance ?
Inteface just provides prototype and not any
functionality , so even if class implements more then one
inteface class has to write its code to implement it and if
any other class is also implemnting interface that class
also has to write code to implemnt it , so how multiple
inheritance is achieved.
Is This Answer Correct ? | 5 Yes | 2 No |
Answer / adavesh
Ofcourse using interfaces !!!
Its not just implementing 2 or more than one interfaces.
Its more than that. Lemme explain with a sample example
public namespace AccountManagement
{
public interface ICalcInterestOnLoan
{
double GetInterestOnLoan(double
dloanAmount);
}
public interface ICalcInterestOnDeposit
{
double GetInterestOnDeposit(double
dPrincipleAmount);
}
class LoanManager: ICalcInterestOnLoan
{
double GetInterestOnLoan(double dloanAmount)
{
//NOTE: All logic for calculating loan
interest goes here
}
}
class PrincipleManager: ICalcInterestOnDeposit
{
double GetInterestOnDeposit(double
dPrincipleAmount)
{
//NOTE: All logic for calculating
deposit interest goes here
}
}
public class AccountManager:ICalcInterestOnLoan,
ICalcInterestOnDeposit
{
ICalcInterestOnLoan oLoanInterest = new
LoanManager();
ICalcInterestOnDeposit oDepositInterest = new
PrincipleManager();
double GetInterestOnLoan(double dloanAmount)
{
return oLoanInterest.GetInterestOnLoan
(dLoanAmount);
}
double GetInterestOnDeposit(double
dPrincipleAmount)
{
return
oDepositInterest.GetInterestOnDeposit(dPrincipleAmount);
}
}
}//namespace ends
Here PrincipleManager & LoanManager are internal classes.
So, external assemblies do not know those classes. The
class AccountManager indirectly inherits the
functionalities of two classes & hence multiple inheritance
is achieved
Kote... got it ?
Is This Answer Correct ? | 6 Yes | 3 No |
Answer / phaniram.h
by appling interface keyword to the base class we can
implement multiple inheritance in .NET
Is This Answer Correct ? | 11 Yes | 10 No |
Answer / cnu
Multiple inheritance means having more than 2 classes at
base level and only one class is derived from them.
In two cases only we can implement inheritance.
1.If we have maximum one class and minimum one interface at
base level.(its not possible in java).
2.If we have two or more interfaces at base level.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / pawan kumar tiwari
Inteface just provides prototype and not any
functionality , so even if class implements more then one
inteface class has to write its code to implement it and if
any other class is also implemnting interface that class
also has to write code to implemnt it , so how multiple
inheritance is achieved.
Is This Answer Correct ? | 1 Yes | 1 No |
How do I create a .exe file?
what is lamda expression?
give an example for suspending, resuming, and stopping a thread ?
Enlist all the components of an ado.net framework?
What is polymorphism? pl explain practically rather than theoretical?
how to create crystal reports give one detail example(i want to view age category report) please give suitable example in my small knowledge
What is semaphore in c#?
What is a destructor in c#?
What are the 3 logical operators?
How can we sort the elements of the array in descending order?
Practcle scenario where I can use abstract class and where I can use Interface
1 Answers Jeevan Technologies,
What is the difference b/w Arry.copy() and array.clone() method?