|
|
|
|
|
by justinsb
4503 days ago
|
|
Agreed, you should be using defer, not recover. The canonical examples are closing a file and releasing a mutex. Both have code samples here:
http://blog.golang.org/defer-panic-and-recover I'm confused as to what you guys are saying: are you saying that you don't need to handle exceptions (whether using defer or recover), or that it's better to use defer over recover? I take exception to the former, totally agree with the latter. |
|