I want to subtract one integer from another, and the result should floor at 0. So 2 minus 4 should equal 0. I could just do
int result = x - y;
if (result < 0) result = 0;
But is there a more elegant way?
|
I want to subtract one integer from another, and the result should floor at 0. So 2 minus 4 should equal 0. I could just do
But is there a more elegant way? |
|||
|
|
|
|||||
|
|
While a lot of people are rushing out with
It is guaranteed to always return a result floored to 0, it doesn't require invoking an extra stack frame (entering the Math static function would), and it prevents underflow. In the rare event that X is close to the minimum int, and y is sufficiently large enough, evaluating (x-y) would result in an underflow. The result would be "too large" of a negative number to fit in an int's space and would therefore roll into a nonsense (and probably positive) answer. By forcing the if statement to guarantee no underflow exists, this solution is also more correct than the |
|||||||||
|
|
Use ternary operator
|
|||||||||||
|