ngn@lemy.lol to Programmer Humor@lemmy.mlEnglish · 6 months agogot himlemy.lolimagemessage-square53fedilinkarrow-up125arrow-down12
arrow-up123arrow-down1imagegot himlemy.lolngn@lemy.lol to Programmer Humor@lemmy.mlEnglish · 6 months agomessage-square53fedilink
minus-squareTyoda@lemm.eelinkfedilinkarrow-up0·edit-26 months agoPerhaps *(p += 1) will be to your liking?
minus-squarefluckx@lemmy.worldlinkfedilinkarrow-up0·edit-26 months agop = 1 x = ++p // x = 2 // p = 2 p = 1 x = p++ // x = 1 // p = 2 ++p will increase the value and return the new value p++ will increase the value and return the old value I think p = p + 1 is the same as p++ and not as ++p. No?
minus-squareSpaceNoodle@lemmy.worldlinkfedilinkarrow-up0·edit-26 months ago(p += 1) resolves to the value of p after the incrementation, as does ( p = p + 1).
minus-squarefluckx@lemmy.worldlinkfedilinkarrow-up0·6 months agoYes. p++ == p+= 1 == p = p + 1 are all the same if you use it in an assignment. ++p is different if you use it in an assignment. If it’s in its own line it won’t make much difference. That’s the point I was trying to make.
minus-squareSpaceNoodle@lemmy.worldlinkfedilinkarrow-up1·6 months agoNo. ++p returns incremented p. p += 1 returns incremented p. p = p + 1 returns incremented p. p++ returns p before it is incremented.
minus-squarexmunk@sh.itjust.workslinkfedilinkarrow-up0arrow-down1·6 months agoMuch better… but can we make it *((void*)(p = p + 1))?
minus-squareshrugal@lemm.eelinkfedilinkarrow-up0arrow-down1·6 months agoHow about some JavaScript p+=[]**[]?
Perhaps *(p += 1) will be to your liking?
p = 1 x = ++p // x = 2 // p = 2
p = 1 x = p++ // x = 1 // p = 2
++p
will increase the value and return the new valuep++
will increase the value and return the old valueI think
p = p + 1
is the same asp++
and not as++p
. No?(p += 1) resolves to the value of p after the incrementation, as does ( p = p + 1).
Yes.
p++
==p+= 1
==p = p + 1
are all the same if you use it in an assignment.++p
is different if you use it in an assignment. If it’s in its own line it won’t make much difference.That’s the point I was trying to make.
No.
++p returns incremented p.
p += 1 returns incremented p.
p = p + 1 returns incremented p.
p++ returns p before it is incremented.
Much better… but can we make it
*((void*)(p = p + 1))
?How about some JavaScript
p+=[]**[]
?