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.
基本上我想做的是有一些库存(比如说它,100)和一个显示已售或已添加库存的库存清单。我如何对其进行编码以说明它是否是库存清单上的负数(例如-55)将其带走或者它是否为正数(即添加它而不是带走它的45)?
干杯
加负数和减法一样,所以两种情况都加;您不需要对正数和负数进行任何特殊处理。
像这样:
stocks += boughtOrSoldQuantity;
如果boughtOrSoldQuantity为负数,stocks将减少该数量;否则会增加。
boughtOrSoldQuantity
stocks
数学100 + -45上是相同的,100 - 45所以在这两种情况下你都可以添加数字。
100 + -45
100 - 45