Arithmetic operation resulted in an overflow. (Adding integers)

前端 未结 8 1701
既然无缘
既然无缘 2020-12-20 11:16

I can\'t understand this error:

In this call to method SetVolume, Volume = 2055786000 and size = 93552000. Volume is an Integer pr

8条回答
  •  旧巷少年郎
    2020-12-20 11:25

    Maximum value fo int is 2147483647, so 2055786000+93552000 > 2147483647 and it caused overflow

提交回复
热议问题