Doubt in Inheritance
IS it possible ?
I have doubt in inheritance.Example is given below
class A
{
somefunction()
}
class B:A
{
somefunction1()
}
class C:B
{
somefunction2()
}
So is it possible to inherit the class B in C..so that i can get the members inside B and A ?
What the technical term called for this...Mutiple inheritance ? or some thing else ?
Thanks in advance
Sridharan.M
shimtannyPosted Apr 29, 2005, 3:10 AM
prabhavathi23Posted Apr 29, 2005, 2:26 AM
mibuytPosted Apr 28, 2005, 9:21 PM
pavithranPosted Apr 28, 2005, 9:34 AM