Do many languages let you do that? When it’s in front of a variable I would’ve expected it to be a subtraction operator only and you would need to do x = -1 * i;
In most languages I’ve seen - is both a unary negation operator and a subtraction operator depending on context. So it would negate an integer literal or a variable in this context.
Why would they not let you do that? I honestly don’t know a single language that wouldn’t let you do that. Same as basic math notation allows you to do that.
x = -i
is a totally valid mathematical equation.
For the downvoters: Find me a single language that supports operators but doesn’t have an unary minus operator
It’s a valid mathematical notation, sure. But there is an implicit understanding that the - in this case is making a number negative rather than subtracting (or, an implicit subtraction from 0).
That said, I did just try it in Java because that’s what I work in normally and I swear I had a gotcha with that. But it worked fine as far as I can tell.
Find me a language where it doesn’t work like that, and we’ll continue the discussion.
Unary minus operator is standard in every single language that I used so far, including C/C++, Java, Python, Kotlin, Lua, JS/TS, Groovy, PHP, Visual Basic, Excel, Mathematica, Haskell, Bash.
x=-i is the unary minus operator which negates the value right of it. It doesn’t matter if that value is a literal (-3), a variable (-i) or a function (-f()).
x-=i is short for x = x-i, and here it’s a binary subtraction, so x is set to the result of i subtracted from x.
There’s a couple people in this threat who seem to actually think that x = -i is some weird magic instead of a standard feature that’s present in every major programming language.
It certainly makes me question a lot of things. This sub somehow manages to both feed my impostor syndrome and makong me feel like a genius programmer depending on the thread.
Personally I would expect it to behave the same in front of a numeric literal and in front of a variable. I do think most languages do that, but I haven’t actually tested that many and could br wrong.
Pretty much all languages do that. It’s a very basic language feature inherited from basic maths notation. Same as x - y subtracts y from x in pretty much any language that supports operators.
Do many languages let you do that? When it’s in front of a variable I would’ve expected it to be a subtraction operator only and you would need to do x = -1 * i;
In most languages I’ve seen - is both a unary negation operator and a subtraction operator depending on context. So it would negate an integer literal or a variable in this context.
Why would they not let you do that? I honestly don’t know a single language that wouldn’t let you do that. Same as basic math notation allows you to do that.
x = -i
is a totally valid mathematical equation.
For the downvoters: Find me a single language that supports operators but doesn’t have an unary minus operator
It’s a valid mathematical notation, sure. But there is an implicit understanding that the - in this case is making a number negative rather than subtracting (or, an implicit subtraction from 0).
With the way negative numbers generally work in binary there would be much different ones and zeroes stored behind the scenes, so handling that would have to be pretty intentional.
That said, I did just try it in Java because that’s what I work in normally and I swear I had a gotcha with that. But it worked fine as far as I can tell.
Find me a language where it doesn’t work like that, and we’ll continue the discussion.
Unary minus operator is standard in every single language that I used so far, including C/C++, Java, Python, Kotlin, Lua, JS/TS, Groovy, PHP, Visual Basic, Excel, Mathematica, Haskell, Bash.
Here’s more info btw: https://en.wikipedia.org/wiki/Unary_operation
But of course – It’s just flipping around the
-=operator!Nope, it is not.
while
x = 5 i = 2 x = -i // x => -2x=-iis the unary minus operator which negates the value right of it. It doesn’t matter if that value is a literal (-3), a variable (-i) or a function (-f()).x-=iis short forx = x-i, and here it’s a binary subtraction, so x is set to the result of i subtracted from x.I need to append
/sto my future silly replies I think… that said, I’ll never pooh-pooh a well thought response, so thanks for the nice write-up!Thanks, I totally missed your sarcasm :)
There’s a couple people in this threat who seem to actually think that
x = -iis some weird magic instead of a standard feature that’s present in every major programming language.That only works if x is already 0
If i is 10 and x is zero, yes, x -= i would have a value of -10. If x was 5 from something else previously, x-=i would end with an x value of -5.
I just tested it in PowerShell. Works fine
$i = 1 $x = -$i $xOutputs -1
Works fine in any language I ever used.
I’m honestly quite surprised that this very basic language feature is even a matter of discussion here.
It certainly makes me question a lot of things. This sub somehow manages to both feed my impostor syndrome and makong me feel like a genius programmer depending on the thread.
Totally, yes. I guess there’s a ton of non-programmers and total beginners in this community.
But sometimes there are some crazy good programmers here as well.
What’s really weird though is that I got two downvotes a bit further up for claiming that unary minus is a standard language feature.
Yeah I saw that. It’s weird because I’ve used it without a second thought in tons of different languages and never had issues with it
Personally I would expect it to behave the same in front of a numeric literal and in front of a variable. I do think most languages do that, but I haven’t actually tested that many and could br wrong.
Pretty much all languages do that. It’s a very basic language feature inherited from basic maths notation. Same as
x - ysubtracts y from x in pretty much any language that supports operators.