Search Results

0
votes

Easy way to shift specific characters in a string in C++?

Slight fix to the previous answer (shift to the right and assume '.' means "can move here"): char text[] = "...Z.Z.Z..."; for (int i = strlen(text) - 2); i > 0; --i) { i …
1
vote

What is the most spectacular way to shoot yourself in the foot with C++?

Non-const references as arguments are evil as it's non-obvious (from just reading the code at the callsite) that an argument is potentially being modified. E.g., given: void …
2
votes

What is the most spectacular way to shoot yourself in the foot with C++?

Operator overloading can be pretty evil. Say you overloaded the operator '*' and you need to modify the implementation/contract. Now, being a good coder, you'll go and check all the uses of the ove …
0
votes

Are memory leaks ever ok?

Only in one instance: The program is going to shoot itself due to an unrecoverable error. …
1
vote

Learning game programming

Games aren't all about 3D graphics. Believe me, I spent 10 years building 3D engines... 3D graphics programmers are like guitarists - they rock hard, but at the end of the day there are loa …
7
votes

using declaration with enum?

A class does not define a namespace, therefore "using" isn't applicable here. Also, you need to make the enum public. If you're trying to use the enum within the same class, here's …
0
votes

Operator overload

Change X to test. Add a semicolon to the end of the penultimate statement. Remove the const from the addition operator return values as you're modifying them. …
2
votes

What would it take for people to move away from C++?

C++ is a tool in my toolbox. So is java and python and a few other things. Handily my company's environment enables me to use whatever is appropriate. C++ == perf when necessa …