Is there a line of code that will terminate the program?
Something like python's sys.exit()?
|
|
|
|||||||||||||
|
|
While you can call
When you call |
|||||||||||||
|
|
There are several ways to cause your program to terminate. Which one is appropriate depends on why you want your program to terminate. The vast majority of the time it should be by executing a return statement in your main function. As in the following.
As others have identified this allows all your stack variables to be properly destructed so as to clean up properly. This is very important. If you have detected an error somewhere deep in your code and you need to exit out you should throw an exception to return to the main function. As in the following.
This causes the stack to be unwound an all your stack variables to be destructed. Still very important. Note that it is appropriate to indicate failure with a non-zero return value. If in the unlikely case that your program detects a condition that indicates it is no longer safe to execute any more statements then you should use std::abort(). This will bring your program to a sudden stop with no further processing. std::exit() is similar but may call atexit handlers which could be bad if your program is sufficiently borked. |
|||||||||
|
|
Yes! |
|||||||||||||
|
|
Allowing the execution flow to leave
If, however, your program reaches an unrecoverable state, it should throw an exception. It's important to realise the implications of doing so, however. There are no widely-accepted best practices for deciding what should or should not be an exception, but there are some general rules you need to be aware of. For example, throwing an exception from a destructor is nearly always a terrible idea because the object being destroyed might have been destroyed because an exception had already been thrown. If a second exception is thrown, While it's generally always possible for functions you call but didn't write to throw exceptions (for example,
Whatever you do, don't use exceptions, |
||||
|
|
|
if you are in the main you can do:
or
The exit code depends of the semantic of your code. 1 is error 0 e a normal exit. In some other function of your program:
will exit the program. |
|||
|
|
|
In main(), there is also:
|
|||||||
|
|
|||
|
|
|
simple enough.. exit ( 0 ); }//end of function Make sure there is a space on both sides of the 0. Without spaces, the program will not stop. |
|||||
|
|
exit(0); // at the end of main function before closing curly braces |
|||||||
|