问题
I've read two really interesting pieces of advice, recently:
- In the comments to this StackOverflow answer, @Mike Weller says to leave your asserts on in production code... what's the performance hit, really? Is there any reason NOT to leave them in?
- In Vincent Gable's blog, he states that you should prefer
assertoverNSAssert... is there any reason NOT to useassert? (it's less letters :))
回答1:
To answer your two questions:
There should be very little performance hit for leaving in an assertion, unless the actual action in the assertion is time consuming (e.g.
assert([obj calculateMeaningOfLife] == 42)). An assertion should be no different than an extraifstatement, performance-wise. The reason for stripping out assertions in release builds is that they are essentially a debugging tool--they catch inconsistent internal program state at runtime. From a developer perspective, it's much better for an app to crash as soon as something goes wrong, but from a user perspective it's arguably less annoying if the app doesn't crash (unless letting the app run with abnormal state causes something horrible to happen), and exposing development details in error messages can be off-putting. There are good arguments on both sides--if I remember correctly, Code Complete recommends stripping them out but The Pragmatic Programmer recommends leaving them in. In any case, assertions are not a substitute for proper error handling and should only be used for programming errors.The basic difference between an
NSAssertand a regularassertis that anNSAssertraises an exception when it fails while anassertjust crashes the app.NSAssertalso lets you supply fancier error messages and logs them. Practically, I really don't think there's much difference between the two--I can't think of a reason to handle an exception thrown by an assertion. (To split hairs, I thinkNSAssertusually involves less typing because you don't have to includeassert.h, but that's neither here nor there.)
回答2:
NSAssert() macro should be used only within Objective-C methods.
NSAssert() is disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined (usually in the release version).
来源:https://stackoverflow.com/questions/6616347/nsassert-vs-assert-which-do-you-use-and-when