When to use an assertion and when to use an exception

前端 未结 11 2038
暖寄归人
暖寄归人 2020-11-27 09:28

Most of the time I will use an exception to check for a condition in my code, I wonder when it is an appropriate time to use an assertion?

For instance,



        
相关标签:
11条回答
  • 2020-11-27 09:30

    Assertions should be used to check something that should never happen, while an exception should be used to check something that might happen.

    For example, a function might divide by 0, so an exception should be used, but an assertion could be used to check that the harddrive suddenly disappears.

    An assertion would stop the program from running, but an exception would let the program continue running.

    Note that if(group != null) is not an assertion, that is just a conditional.

    0 讨论(0)
  • 2020-11-27 09:34

    As a general rule:

    • Use assertions for internal consistency checks where it doesn't matter at all if someone turns them off. (Note that the java command turns off all assertions by default.)
    • Use regular tests for any kind of checks what shouldn't be turned off. This includes defensive checks that guard against potential damage cause by bugs, and any validation data / requests / whatever provided by users or external services.

    The following code from your question is bad style and potentially buggy

    try {
        group = service().getGroup("abc");
    } catch (Exception e) {
        //i dont log error because i know whenever error occur mean group not found
    }
    

    The problem is that you DON'T know that an exception means that the group was not found. It is also possible that the service() call threw an exception, or that it returned null which then caused a NullPointerException.

    When you catch an "expected" exception, you should catch only the exception that you are expecting. By catching java.lang.Exception (and especially by not logging it), you are making it harder to diagnose / debug the problem, and potentially allowing the app to do more damage.

    0 讨论(0)
  • 2020-11-27 09:34

    Unfortunately asserts can be disabled. When in production you need all the help you can get when tracking down something unforeseen, so asserts disqualify themselves.

    0 讨论(0)
  • 2020-11-27 09:35

    Out of my mind (list may be incomplete, and is too long to fit in a comment), I would say:

    • use exceptions when checking parameters passed to public or protected methods and constructors
    • use exceptions when interacting with the user or when you expect the client code to recover from an exceptional situation
    • use exceptions to address problems that might occur
    • use assertions when checking pre-conditions, post-conditions and invariants of private/internal code
    • use assertions to provide feedback to yourself or your developer team
    • use assertions when checking for things that are very unlikely to happen otherwise it means that there is a serious flaw in your application
    • use assertions to state things that you (supposedly) know to be true

    In other words, exceptions address the robustness of your application while assertions address its correctness.

    Assertions are designed to be cheap to write, you can use them almost everywhere and I'm using this rule of thumb: the more an assertion statement looks stupid, the more valuable it is and the more information it embeds. When debugging a program that does not behave the right way, you will surely check the more obvious failure possibilities based on your experience. Then you will check for problems that just cannot happen: this is exactly when assertions help a lot and save time.

    0 讨论(0)
  • 2020-11-27 09:41

    Testing for null will only catch nulls causing problems, whereas a try/catch as you have it will catch any error.

    Broadly, try/catch is safer, but slightly slower, and you have to be careful that you catch all the kinds of error that may occur. So I would say use try/catch - one day the getGroup code may change, and you just might need that bigger net.

    0 讨论(0)
  • 2020-11-27 09:43

    See section 6.1.2 (Assertions vs. other error code) of Sun's documentation at the following link.

    http://www.oracle.com/technetwork/articles/javase/javapch06.pdf

    This document gives the best advice I've seen on when to use assertions. Quoting from the document:

    "A good rule of thumb is that you should use an assertion for exceptional cases that you would like to forget about. An assertion is the quickest way to deal with, and forget, a condition or state that you don’t expect to have to deal with."

    0 讨论(0)
提交回复
热议问题