An assertion is used to verify something about the state of your program at a particular point in the program. If the assertion fails, then there is a bug in the program, and it makes no sense to continue the execution of the program. But it does cost something to run an assertion - especially one that involves making function calls - so you usually disable them in release mode (-release for dmd does this automatically). You run your program and test it in debug mode and hopefully you hit any states that result in assertions failing so that you can catch and fix those bugs. Then you hope that you've caught them all and that nothing terribly bad happens in release mode if you didn't.
But what about entering code paths which should never be reached under any circumstances? That's where assert(0) comes in.
It functions like a normal assertion without -release, so you get nice stack traces and all that when you hit it, but because it's something that should not only never happen but would result in a completely invalid code path, it's left in in release mode but changed to a halt instruction. Classic places of where to use it would be cases such as
switch(var)
{
...
//various case statements that should cover all possible values of var
...
default:
assert(0, format("Invalid value for var: %s", var));
}
where the default case should never be hit, and if it is, the logic in your function is wrong, or
string func(int i) nothrow
{
try
return format("%s", i);
catch(Exception e)
assert(0, "Format threw. That should be impossible in this case.");
}
where as long as the logic of func is correct, it should be impossible for it to throw, but it called a function which can throw under some set of circumstances (just not these), so you have to use a try-catch block to make the compiler happy. You then put an assert(0) in the catch block so that you catch it if it really can throw.
The classic case for assert(0) is actually used by the compiler itself - and that is to insert it at the end of a function which doesn't end with a return statement so that the code execution does not attempt to continue if your code's logic is incorrect and you somehow end up at the end of the function anyway.
In all such cases, you're dealing with a code path which is impossible to hit as long as your code is correct, but it's a safety net in case you got your logic wrong. The advantages of using assert(0) for this over a naked halt instruction are that when -release is enabled, you get a proper stack trace, and you can have a nice error message with it. Then when -release is enabled, it gets turned into a halt instruction, so you're guaranteed that your program won't get itself into an invalid state by getting past the line with the assert(0).
You use normal assertions for stuff that you want to verify in debug mode but not in release mode, and you use assert(0) for code paths that you want to guarantee are never hit in any mode.
false). Generally though, I'd argue that what you're doing there is probably not the best way to go about it. It would depend on the exact situation though. – Jonathan M Davis Aug 6 '11 at 21:29