Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一个例子:如果 A = 5 并且 b = 6 如果将 2 添加到 A,我希望 A 和 b = 7。
我希望 B 仅在 A 大于 B 时更改,然后我希望 B 复制与 A 相同的数字。
我希望这能解释我在看什么,谢谢。
// Suppose A is already 5, and b is already 6. A += 2 if (A > b) b = A
希望这可以帮助 :)
您可以使用 Math.max(...):
var a:Number = 5; var b:Number = 6; a = a + 2; b = Math.max(a, b);
b 将等于 a (5+2) 或 b (6) 中的较高值 - 在本例中为 7。