Is Java assert broken?

后端 未结 12 781
走了就别回头了
走了就别回头了 2020-12-29 23:33

While poking around the questions, I recently discovered the assert keyword in Java. At first, I was excited. Something useful I didn\'t already know! A more

12条回答
  •  鱼传尺愫
    2020-12-30 00:16

    This sounds about right. Assertions are just a tool that is useful for debugging code - they should not be turned on all the time, especially in production code.

    For example, in C or C++, assertions are disabled in release builds.

提交回复
热议问题