I have a program that will throw a simple exception when it's completed, when that exception is thrown is there any way to treat it like a stop-watch and stop the timer and display how long it took to solve the problem given?
Thanks a lot!
feedback
|
|
For example:
You can also use | |||
feedback
|
|
In the simplest case, use Just be sure that the timer is in scope whenever the exception is caught. | |||
|
feedback
|
|
Exception handling is an especially poor method of flow control - much better to For your actual question, you can get the system time with | |||
|
feedback
|