Can someone please share a set of nifty preprocessor hacks (ANSI C89/ISO C90 compatible please) which enable some kind of ugly (but usable) object-orientation in C? I am familiar with a few different object-oriented languages, so please don't respond with answers like "Learn C++!". I have read "Object-Oriented Programming With ANSI C" (beware: pdf) and several other interesting solutions, but I'm mostly interested in yours :-)!
|
|
C Object System (COS) sounds promising (it's still in alpha version). It tries to keep minimal the available concepts for the sake of simplicity and flexibility: uniform object oriented programming including open classes, metaclasses, property metaclasses, generics, multimethods, delegation, ownership, exceptions, contracts and closures. There is a draft paper (PDF) that describes it. Exception in C is a C89 implementation of the TRY-CATCH-FINALLY found in other OO languages. It comes with a testsuite and some examples. Both by Laurent Deniau, which is working a lot on OOP in C. |
|||||
|
|
I would advise against preprocessor (ab)use to try and make C syntax more like that of another more object-oriented language. At the most basic level, you just use plain structs as objects and pass them around by pointers:
To get things like inheritance and polymorphism, you have to work a little harder. You can do manual inheritance by having the first member of a structure be an instance of the superclass, and then you can cast around pointers to base and derived classes freely:
To get polymorphism (i.e. virtual functions), you use function pointers, and optionally function pointer tables, also known as virtual tables or vtables:
And that's how you do polymorphism in C. It ain't pretty, but it does the job. There are some sticky issues involving pointer casts between base and derived classes, which are safe as long as the base class is the first member of the derived class. Multiple inheritance is much harder - in that case, in order to case between base classes other than the first, you need to manually adjust your pointers based on the proper offsets, which is really tricky and error-prone. Another (tricky) thing you can do is change the dynamic type of an object at runtime! You just reassign it a new vtable pointer. You can even selectively change some of the virtual functions while keeping others, creating new hybrid types. Just be careful to create a new vtable instead of modifying the global vtable, otherwise you'll accidentally affect all objects of a given type. |
|||||||||||||
|
|
(ripped from How to write production C code? [closed]) I once worked with a C library that was implemented in a way that struck me as quite elegant. They had written, in C, a way to define objects, then inherit from them so that they were as extensible as a C++ object. The basic idea was this:
Inheriting is difficult to describe, but basically it was this:
Then in another file:
Then you could have a van created in memory, and being used by code that only knew about vehicles:
It worked beautifully, and the .h files defined exactly what you should be able to do with each object. |
|||||||||||||||
|
|
The GNOME desktop for Linux is written in object-oriented C, and it has an object model called "GObject" which supports properties, inheritance, polymorphism, as well as some other goodies like references, event handling (called "signals"), runtime typing, private data, etc. It includes preprocessor hacks to do things like typecasting around in the class hierarchy, etc. Here's an example class I wrote for GNOME (things like gchar are typedefs): Inside the GObject structure there's a GType integer which is used as a magic number for GLib's dynamic typing system (you can cast the entire struct to a "GType" to find it's type). |
|||||
|
|
If you think of methods called on objects as static methods that pass an implicit ' For example:
becomes:
Or something like that. |
|||||||||
|
|
Slightly off topic but the original C++ compiler, c-front, compiled C++ to C and then to assembler. |
|||||
|
|
ffmpeg (a toolkit for video processing) is written in straight C (and assembly language), but using an object-oriented style. It's full of structs with function pointers. There are a set of factory functions that initialize the structs with the appropriate "method" pointers. |
|||||||
|
|
I used to do this kind of thing in C, before I knew what OOP was. Following is an example, which implements a data-buffer which grows on demand, given a minimum size, increment and maximum size. This particular implementation was "element" based, which is to say it was designed to allow a list-like collection of any C type, not just a variable length byte-buffer. The idea is that the object is instantiated using the xxx_crt() and deleted using xxx_dlt(). Each of the "member" methods takes a specifically typed pointer to operate on. I implemented a linked list, cyclic buffer, and a number of other things in this manner. I must confess, I have never given any thought on how to implement inheritance with this approach. I imagine that some blend of that offered by Kieveli might be a good path. dtb.c:
dtb.h
PS: vint was simply a typedef of int - I used it to remind me that it's length was variable from platform to platform (for porting). |
|||||
|
|
for me object orientation in C should have these features : 1) encapsulation and data hiding ( can be achieved using structs/opaque pointers) 2) inheritance and support for polymorphism ( single inheritance can be achieved using structs - make sure abstract base is not instantiable) 3) constructor and destructor functionality ( not easy to achieve) 4) type checking (at least for user defined types as C doesn't enforce any ) 5) reference counting ( or some thing to implement RAAI) 6) limited support for exception handling (setjmp and longjmp ) on top of above it should rely on ANSI/ISO specifications and should not rely on compiler specific functionality. |
|||||||
|
|
If I were going to write OOP in C I would probably go with a pseudo-PIMPL design. Instead of passing pointers to structs, you end up passing pointers to pointers to structs. This makes the content opaque and facilitates polymorphism and inheritance. The real problem with OOP in C is what happens when variables exit scope. There's no compiler generated destructors and that can cause issues. MACROS can possibly help but it is always going to be ugly to look at. |
|||
|
|
Output:
Here is a show of what is OO programming with C. This is real, pure C, no preprocessor macros. We have inheritance, polymorphism and data encapsulation (including data private to classes or objects). There is no chance for protected qualifier equivalent, that is, private data is private down the innheritance chain too. But this is not an inconvenience because I don't think it is necessary.
|
||||
|
|