vote up 1 vote down star

Can i inherit structure in C?if yes how?

flag
2  
There is no such thing as inheritance in C – Ed Swangren Jul 11 at 18:30

7 Answers

vote up 2 vote down

You can do the above mentioned

typedef struct
{
    // base members

} Base;

typedef struct
{
    Base base;

    // derived members

} Derived;

But if you want to avoid pointer casting, you can using pointers to a union of Base and Derived.

link|flag
vote up 12 vote down

The closest you can get is the fairly common idiom:

typedef struct
{
    // base members

} Base;

typedef struct
{
    Base base;

    // derived members

} Derived;

As Derived starts with a copy of Base, you can do this:

Base *b = (Base *)d;

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 this).

By which point, you may as well use C++!

link|flag
Well, that's assuming a C++ compiler is available for your platform! – Anthony Cuozzo Jul 13 at 1:22
If a C compiler is available, then so is a C++ compiler - just use one that produces C as its output. – Earwicker Jul 13 at 6:29
vote up 0 vote down

No, you cant. imo the best approach to OOP in C is using ADT.

link|flag
vote up 12 vote down

C has no explicit concept of inheritance, unlike C++. However, you can reuse a structure in another structure:

typedef struct {
    char name[NAMESIZE];
    char sex;
} Person;

typedef struct {
    Person person;
    char job[JOBSIZE];
} Employee;

typedef struct {
    Person person;
    char booktitle[TITLESIZE];
} LiteraryCharacter;
link|flag
1  
As far as I know, you can have a struct/class member inside another in C++ as well. – Tyler Millican Jul 11 at 18:36
3  
Of course you can. – Neil Butterworth Jul 11 at 18:37
2  
C says that no padding appears before the first member of a struct. So you can in fact (and are allowed) cast LiteraryCharacter* to Person*, and treat it as a person. +1 – Johannes Schaub - litb Jul 12 at 1:06
vote up 2 vote down

You can simulate it, but you can't really inherit.

link|flag
what's reality? C++ is just a very simple runtime library for dispatching and a lot of compiler syntax to call it when needed. the original C++ compilers produced C code, after all. (and very readable C in fact) – Javier Jul 11 at 19:51
1  
Meanwhile, other users have shown HOW to do this. – luiscubal Jul 11 at 20:28
vote up 2 vote down

C is not an object-oriented language and hence has no inheritance.

link|flag
vote up 2 vote down

No you cannot. C does not support the concept of inheritance.

link|flag
doesn't support but doesn't get in the way either. – Javier Jul 11 at 19:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.