You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defer란 현재 코드 블록(구역)을 나가기 전에 꼭 실행해야 되는 코드를 작성하여 코드가 블록을 어떻게 빠져 나가든 꼭 마무리해야 되는 작업을 할 수 있게 도와줍니다.
defer의 실행 순서는 기본적으로 역순으로 이루어지며 defer가 선언 된 코드 블록을 빠져나오기 직전에 실행이 됩니다.
defer는 코드 블록을 빠져나오기 직전에 실행이 되므로 throw나 guard 등을 사용해서 도중에 해당 블록에서 나오게 될 경우 혹은, return 값이 never이기에 비 반환 함수인 경우에 호출이 되지 않습니다.
No description provided.
The text was updated successfully, but these errors were encountered: