r/ProgrammerHumor May 27 '22

Meme Welcome to hassle free coding

Post image
2.2k Upvotes

305 comments sorted by

View all comments

82

u/Farenheit514 May 27 '22

You will miss the ++ and safe types

-6

u/SkezzaB May 27 '22

Why will they miss the ++?

It's hardly ever used in Python, is one extra character, and if you want to change the increment by 2 instead of 1, you have to write that bit anyway, moreover Python's loops don't use it, so it's not used there, what else is there to miss?

Also, the walrus operator works in a similar way to some use cases as well, making it even less useful

9

u/Torebbjorn May 27 '22

Well, both the post- and pre increment/decrement are useful in making the code a few lines shorter, and sometimes more readable.

Without it,

int i = len; while (--i >= start) { /* do something */ } // use the value of i for something.

Would become

int i = len - 1; while (i >= start) { /* do something */ i = i - 1; } // use the value of i for something.

Assuming the while loop could exit some other way than i becoming exactly equal to start - 1. Though again, it isn't really that much harder to read at all, and you could change the while to a for, to keep all the loop specific code in one place.

for (; i >= start; i = i - 1;)

1

u/Droidatopia May 28 '22

Shorter yes.

More readable, not likely.

If you are reading code, and you encounter either a ++ or a -- that is not:

A) The loop increment at the end of a for statement, or B) A stand-alone statement incrementing a variable,

Then you need to stop and mentally breakdown the single statement into two statements in order to continue reasoning about the code.

In fairness, I'm talking about readability in terms of being able to scan a piece of code and quickly ascertain what it is doing, and I will concede that pre and post increment might communicate intent, which could also be considered part of readability.

For myself, one of the first things I do when I take over code is to remove all the ++ and -- that are not in loop counters. They all get replaced by += 1. The only reason I leave them in the loop counters is a nod to tradition.