Question
I have two compilers on my hardware C++ and C89
I'm thinking about using C++ with classes but without polymorphism (to avoid vtables). The main reasons I’d like to use C++ are:
- I prefer to use “inline” functions instead of macro definitions.
- I’d like to use namespaces as I prefixes clutter the code.
- I see C++ a bit type safer mainly because of templates, and verbose casting.
- I really like overloaded functions and constructors (used for automatic casting).
Do you see any reason to stick with C89 when developing for very limited hardware (4kb of RAM)?
Conclusion
Thank you for your answers, they were really helpful!
I though the subject through and I will stick with C mainly because:
- It is easier to predict actual code in C and this is really important if you have only 4kb of ram.
- My team consists of C developers mainly so advance features of C++ won't be frequently used.
- I've found a way to inline functions in my C compiler (C89).
It is hard to accept one answer as you provided so many good answers. Unfortunately I can't create a wiki and accept it so I will choose one answer that made me think most.
Summary of answers
Here is a list that summarizes the reasons to stick with C:
- C is simpler and therefore easier to predict the actual code that would be generated. stbuton, Michael Kohne, tinkertim
- Actual code generated by C++ can easily get bloated. Yishai, Steve Lazaridis, Michael Kohne
- C is more portable Oli_UK
- Name mangling of C++ adds extra confusion while debugging in assembly RBerteig
- C++ specific initialization can be complex (ex. ctors of global objects can be fired before device initialization) RBerteig
- Significant part of embedded software engineers have no experience of C++ Steve Melnikoff
- There is more C libraries for embedded development tinkertim
If I've missed some point please leave me a comment.
