Coming from a C#
background, In C#
I could write this:
int int1 = 0;
double double1 = 0;
float float1 = 0;
string str = "words" + int1 + double1 + float1;
..and the casting to strings is implicit. In C++
I understand the casting has to be explicit, and I was wondering how the problem was usually tackled by a C++
programmer?
There's plenty of info on the net already I know, but there seems to quite a number of ways to do it and I was wondering if there wasn't a standard practice in place?
If you were to write that above code in C++
, how would you do it?