Can you write object oriented code in C? Especially with regard to polymorphism.
See also: http://stackoverflow.com/questions/415452/object-orientation-in-c
|
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
|
|||
|
|
|
|
Yes. In fact Axel Schreiner provides his book for free which covers the subject quite thoroughly. |
||
|
|
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++. |
||
|
|
|
|
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 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:
Of course, those code segments above would actually be in a "constructor" such as 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:
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:
This produces the output:
so you can see that the different functions are being called, depending on the sub-class. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
||
|
|
|
|
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. |
|||
|
|
|
|
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.
PS. This is tested on a C++ compiler, but it should be easy to make it work on a C compiler. |
||
|
|
|
|
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. |
||||||||
|
|
|
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)
|
||
|
|
|
|
Of course, it just won't be a pretty as using a language with built in support. I've even written "object oriented assembler". |
||
|
|
|
|
Object Oriented Programming in C by Laurent Deniau |
||
|
|
|
|
Yes, but I have never seen anyone attempt to implement any sort of polymorphism with C. |
||
|
|
I'll grant everyone the benefit of the doubt and accept that it can be done. Other than curiosity though -- why? |
||
|
|
|
|
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.. |
||
|
|
|
|
technically no. practically yes. |
||
|
|