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
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 …
