vote up 16 vote down star
13

Can you write object oriented code in C? Especially with regard to polymorphism.


See also: http://stackoverflow.com/questions/415452/object-orientation-in-c

flag

15 Answers

vote up 23 vote down check

Yes. In fact Axel Schreiner provides his book for free which covers the subject quite thoroughly.

link|flag
thanks for the link... looks like some exercise for the brain cells is in the offing. – Gishu Dec 9 '08 at 8:38
While the concepts in this book are solids, you'll lose type safety. – diapir Jun 30 at 20:29
vote up 11 vote down

I've seen it done. I wouldn't recommend it. C++ originally started this way as a preprocessor that produced C code as an intermediate step.

Essentially what you end up doing is create a dispatch table for all of your methods where you store your function references. Deriving a class would entail copying this dispatch table and replacing the entries that you wanted to override, with your new "methods" having to call the original method if it wants to invoke the base method. Eventually, you end up rewriting C++.

link|flag
vote up 11 vote down

Since you're talking about polymorphism then yes, you can, we were doing that sort of stuff years before C++ came about.

Basically you use a struct to hold both the data and a list of function pointers to point to the relevant functions for that data.

So, in a communications class, you would have an open, read, write and close call which would be maintained as four function pointers in the structure, alongside the data for an object, something like:

typedef struct {
    int (*open)(void *self, char *fspec);
    int (*close)(void *self);
    int (*read)(void *self, void *buff, size_t max_sz, size_t *p_act_sz);
    int (*write)(void *self, void *buff, size_t max_sz, size_t *p_act_sz);
    // And data goes here.
} tCommClass;

tCommClass commRs232;
commRs232.open = &rs232Open;
: :
commRs232.write = &rs232Write;

tCommClass commTcp;
commTcp.open = &tcpOpen;
: :
commTcp.write = &tcpWrite;

Of course, those code segments above would actually be in a "constructor" such as rs232Init().

When you 'inherit' from that class, you just change the pointers to point to your own functions. Everyone that called those functions would do it through the function pointers, giving you your polymorphism:

int stat = (commTcp.open)(commTcp, "bigiron.box.com:5000");

Sort of like a manual vtable.

You could even have virtual classes by setting the pointers to NULL -the behavior would be slightly different to C++ (core dump at run-time rather than error at compile time).

Here's a piece of sample code that demonstates it:

#include <stdio.h>

// The top-level class.

typedef struct _tCommClass {
    int (*open)(struct _tCommClass *self, char *fspec);
} tCommClass;

// Function for the TCP class.

static int tcpOpen (tCommClass *tcp, char *fspec) {
    printf ("Opening TCP: %s\n", fspec);
    return 0;
}
static int tcpInit (tCommClass *tcp) {
    tcp->open = &tcpOpen;
    return 0;
}

// Function for the HTML class.

static int htmlOpen (tCommClass *html, char *fspec) {
    printf ("Opening HTML: %s\n", fspec);
    return 0;
}
static int htmlInit (tCommClass *html) {
    html->open = &htmlOpen;
    return 0;
}

// Test program.

int main (void) {
    int status;
    tCommClass commTcp, commHtml;

    // Same base class but initialized to different sub-classes.
    tcpInit (&commTcp);
    htmlInit (&commHtml);

    // Called in exactly the same manner.

    status = (commTcp.open)(&commTcp, "bigiron.box.com:5000");
    status = (commHtml.open)(&commHtml, "http://www.microsoft.com");

    return 0;
}

This produces the output:

Opening TCP: bigiron.box.com:5000
Opening HTML: http://www.microsoft.com

so you can see that the different functions are being called, depending on the sub-class.

link|flag
vote up 6 vote down

Sure that is possible. This is what GObject, the framework where all of gtk+ and gnome are based on, does. Read this: http://en.wikipedia.org/wiki/GObject.

link|flag
vote up 4 vote down

Object oriented C, can be done, I've seen that type of code in production in Korea, and it was the most horrible monster I'd seen in years (this was like last year(2007) that I saw the code). So yes it can be done, and yes people have done it before, and still do it even in this day and age. But I'd recommend C++ or Objective-C, both are languages born from C, with the purpose of providing object orientation with different paradigms.

link|flag
vote up 4 vote down

There is an example of inheritance using C in Jim Larson's 1996 talk given at the Section 312 Programming Lunchtime Seminar here: High and Low-Level C.

link|flag
vote up 4 vote down

Trivial example with a Animal and Dog, what you do is mirror C++'s vtable mechanism (largely anyway). You also separate allocation and instantiation (Animal_Alloc, Animal_New) so we don't call malloc() multiple times. We must also explicitly pass the this pointer around.

If you were to do non virtual functions, that's trival. You just don't add them to the vtable and static functions don't require a this pointer. Multiple inheritance generally requires multiple vtables to resolve ambiguities.

Also, you should be able to use setjmp/longjmp to do exception handling.

struct Animal_Vtable{
	typedef void (*Walk_Fun)(struct Animal *a_This);
	typedef struct Animal * (*Dtor_Fun)(struct Animal *a_This);

	Walk_Fun Walk;
	Dtor_Fun Dtor;
};

struct Animal{
	Animal_Vtable vtable;

	char *Name;
};

struct Dog{
	Animal_Vtable vtable;

	char *Name; // mirror member variables for easy access
	char *Type;
};

void Animal_Walk(struct Animal *a_This){
	printf("Animal (%s) walking\n", a_This->Name);
}

struct Animal* Animal_Dtor(struct Animal *a_This){
	printf("animal::dtor\n");
	return a_This;
}

Animal *Animal_Alloc(){
	return (Animal*)malloc(sizeof(Animal));
}

Animal *Animal_New(Animal *a_Animal){
	a_Animal->vtable.Walk = Animal_Walk;
	a_Animal->vtable.Dtor = Animal_Dtor;
	a_Animal->Name = "Anonymous";
	return a_Animal;
}

void Animal_Free(Animal *a_This){
	a_This->vtable.Dtor(a_This);

	free(a_This);
}

void Dog_Walk(struct Dog *a_This){
	printf("Dog walking %s (%s)\n", a_This->Type, a_This->Name);
}

Dog* Dog_Dtor(struct Dog *a_This){
	// explicit call to parent destructor
	Animal_Dtor((Animal*)a_This);

	printf("dog::dtor\n");

	return a_This;
}

Dog *Dog_Alloc(){
	return (Dog*)malloc(sizeof(Dog));
}

Dog *Dog_New(Dog *a_Dog){
	// explict call to parent constructor
	Animal_New((Animal*)a_Dog);

	a_Dog->Type = "Dog type";
	a_Dog->vtable.Walk = (Animal_Vtable::Walk_Fun) Dog_Walk;
	a_Dog->vtable.Dtor = (Animal_Vtable::Dtor_Fun) Dog_Dtor;

	return a_Dog;
}

int main(int argc, char **argv){
	/* 
	base class: 
	Animal *a_Animal = Animal_New(Animal_Alloc());
	*/
	Animal *a_Animal = (Animal*)Dog_New(Dog_Alloc());

	a_Animal->vtable.Walk(a_Animal);

	Animal_Free(a_Animal);
}

PS. This is tested on a C++ compiler, but it should be easy to make it work on a C compiler.

link|flag
vote up 2 vote down

You can fake it using function pointers, and in fact, I think it is theoretically possible to compile C++ programs into C.

However, it rarely makes sense to force a paradigm on a language rather than to pick a language that uses a paradigm.

link|flag
The very first C++ compiler did exactly that - it converted the C++ code into equivalent (but ugly and non-human-readable) C code, which was then compiled by the C compiler. – Adam Rosenfield Dec 9 '08 at 6:05
EDG, Cfront and some others are still capable of doing this. With a very good reason: not every platform has a C++ compiler. – Jasper Bekkers Dec 9 '08 at 9:50
For some reason I thought that C-front only supported certain C++ extensions (e.g., references) but not full OOP / dynamic dispatch emulation. – Uri Dec 9 '08 at 20:15
You can also do the same thing with LLVM and the C backend. – Zifre Mar 31 at 17:47
vote up 2 vote down

Yes, you can. People were writing Object Oriented C before C++ or Objective C came on the scene. Both C++ and Objective C were, in parts, attempts to take some of the OO concepts used in C and formalize them as part of the language.

Here's a really simple program that shows how you can make something that looks-like/is a method call (there are better ways to do this, this is just proof the language supports the concepts)

#include<stdio.h>

struct foobarbaz{
    int one;
    int two;
    int three;
    int (*exampleMethod)(int, int);
};

int addTwoNumbers(int a, int b){
    return a+b;
}

int main()
{  
    //define the function pointer    
    int (*pointerToFunction)(int, int) = addTwoNumbers;         

    //lets make sure we can call the pointer
    int test = (*pointerToFunction)(12,12); 
    printf ("test: %u \n",  test);

    //now, define an instance of our struct
    //and add some default values
    struct foobarbaz fbb;
    fbb.one   = 1;
    fbb.two   = 2;
    fbb.three = 3;   

    //now add a "method"
    fbb.exampleMethod = addTwoNumbers;

    //try calling the method
    int test2 = fbb.exampleMethod(13,36);    
    printf ("test2: %u \n",  test2);   

    printf("\nDone\n");
    return 0;
}
link|flag
vote up 2 vote down

Of course, it just won't be a pretty as using a language with built in support. I've even written "object oriented assembler".

link|flag
vote up 2 vote down

Object Oriented Programming in C by Laurent Deniau

link|flag
vote up 1 vote down

Yes, but I have never seen anyone attempt to implement any sort of polymorphism with C.

link|flag
You need to look around more :) For instance, Microsoft's Direct X has a polymorphic C interface. – AShelly Dec 9 '08 at 19:09
Look into linux kernel implementation for example. It is very common and widely used practice in C. – Ilya Dec 12 '08 at 3:02
vote up 0 vote down

I'll grant everyone the benefit of the doubt and accept that it can be done. Other than curiosity though -- why?

link|flag
vote up 0 vote down

if you try to code some routing protocol in network layer which is using C.. how can i write it in OO style other than writing the OO in C..

link|flag
vote up -4 vote down

technically no.

practically yes.

link|flag

Your Answer

Get an OpenID
or

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