Search Results

18
votes
22answers
3k views

Switch vs if-else

What's the best practice for switch vs if for a 30 unsigned enumerations where about 10 have an expected action (that presently is the same action). Performance and space need to be considered but …
2
votes

C++ usage in embedded systems

It's an interesting read for the Rationale on the early …
1
vote

C++ concatenate string and int

#include <sstream> template <class T> inline std::string to_string (const T& t) { std::stringstream ss; ss << t; return ss.str(); } Then yo …