9
votes
5answers
2k views
Any workarounds for non-static member array initialization?
In C++, it's not possible to initialize array members in the initialization list, thus member objects should have default constructors and they should be properly initialized in the constructor. Is …
0
votes
C++ usage in embedded systems
Note that the cost of exceptions depends on your code. In one application I profiled (a relatively small one on ARM968), exception support added 2 % to execution time, and code size was increased b …
1
vote
What existing style and coding standard documents should be used on a C++ project?
I agree with Harald Scheirich, it is most important to have the team agree on what the rules should be rather than just picking a set that has been recommended by outsiders.
My personal rec …
