Why should I use asserts?

后端 未结 19 2006
遇见更好的自我
遇见更好的自我 2020-12-12 13:47

I never got the idea of asserts -- why should you ever use them?

I mean, let\'s say I were a formula driver and all the asserts were things like security belt, helm

19条回答
  •  执笔经年
    2020-12-12 14:33

    They enable you to test your assumptions. For example, let's say that you wanted to calculate speed. You would probably want to assert that your calculation is less than the speed of light.

    Assertions are for development, to make sure you don't mess up.

提交回复
热议问题