What does the Java assert keyword do, and when should it be used?

前端 未结 19 1732
眼角桃花
眼角桃花 2020-11-22 15:58

What are some real life examples to understand the key role of assertions?

19条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 16:10

    In addition to all the great answers provided here, the official Java SE 7 programming guide has a pretty concise manual on using assert; with several spot-on examples of when it's a good (and, importantly, bad) idea to use assertions, and how it's different from throwing exceptions.

    Link

提交回复
热议问题