Hi Jerome,
It seems that I replied to your mailbox,sorry!
What I mean is that ,say,in C# and other OOP laguage,there is a key
word like Interface and Delegate/Event...,For Interface,act as a
bridge to implement multi-inheritance,
For example:
Interface IRun
{
int Speed();
}
class Car:IRun
{
int Speed();
//Other member;
}
class Dog:IRun
{
int Speed();
//Other member;
}
Not sure whether it is clear.
Regards,
Sam