|
|
|
|
|
by zimbatm
2919 days ago
|
|
No. Defer has a role, which is to reduce the number of issues related to resource return like closing file descriptors and returning pool objects. Don't use defer when there is only one branch in your code. Remove defer when optimising hot code paths. |
|
Code will get changed over time and one code path often becomes two or more. Chances are, the next developer who adds code will not realize that the resource needs to be freed, or closed and simply forgets to add the defer. The only thing where defer really gets into your way is for error handling (because it can get verbose if you handle errors in defer).
In the grand scheme of things, defer is not noticeablily slower.