Can i inherit structure in C?if yes how?
|
|
You can do the above mentioned
But if you want to avoid pointer casting, you can using pointers to a union of Base and Derived. |
||
|
|
|
|
The closest you can get is the fairly common idiom:
As Derived starts with a copy of Base, you can do this:
Where d is an instance of Derived. So they are kind of polymorphic. But having virtual methods is another challenge - to do that, you'd need to have the equivalent of a vtable pointer in Base, containing function pointers to functions that accept Base as their first argument (which you could name By which point, you may as well use C++! |
||||
|
|
|
No, you cant. imo the best approach to OOP in C is using ADT. |
||
|
|
|
|
C has no explicit concept of inheritance, unlike C++. However, you can reuse a structure in another structure:
|
||||||||||||
|
|
|
You can simulate it, but you can't really inherit. |
||||||
|
|
|
C is not an object-oriented language and hence has no inheritance. |
||
|
|
|
|
No you cannot. C does not support the concept of inheritance. |
||
|
