What is the difference between checked and unchecked?

后端 未结 5 1015
情话喂你
情话喂你 2021-01-17 10:01

What is the difference between

checked(a + b)

and

unchecked(a + b)

?

5条回答
  •  孤城傲影
    2021-01-17 10:18

    if a + b is larger than the maximum value of the datatype, checked will throw an exception. Unchecked will roll the overflow of the value and add it to zero.

提交回复
热议问题