Câu hỏi phỏng vấn Swift
Câu hỏi

Explain the defer usage in Swift

Câu trả lời

The defer statement in Swift is a powerful feature used to execute a block of code just before the current scope is exited, regardless of how the exit occurs. This can be particularly useful for cleanup tasks, such as closing file handles, releasing resources, or performing any necessary finalization steps.

Key Points about defer in Swift

  1. Execution Timing:

    • The code within a defer block is executed just before the scope in which it is defined exits. This ensures that the deferred code runs no matter how the scope is exited, whether through a return statement, an error being thrown, or simply reaching the end of the scope
  2. Syntax:

    swift Copy
    defer {
        // Code to be executed before exiting the scope
    }
  3. Order of Execution:

    • If multiple defer statements are present in the same scope, they are executed in the reverse order of their appearance. This means the last defer statement defined is the first to be executed when the scope exits
  4. Common Use Cases:

    • Resource Management: Ensuring that resources such as file handles or network connections are properly closed.
    • Cleanup Tasks: Performing necessary cleanup actions, such as releasing memory or resetting state, before exiting a function or block of code.
    • Error Handling: Ensuring that certain actions are taken even if an error occurs within a block of code

Examples

Basic Example

swift Copy
func exampleFunction() {
    print("Start")
    defer {
        print("This is deferred until the end")
    }
    print("End")
}

exampleFunction()
// Output:
// Start
// End
// This is deferred until the e...
middle

middle

Gợi ý câu hỏi phỏng vấn

senior

What is QoS (Quality of Service) in GCD?

senior

When should you use Classes over Structs?

middle

When to use a set rather than an array in Swift?

Bình luận

Chưa có bình luận nào

Chưa có bình luận nào