Swift lazy
參考連結:
Lazy 使用時機
A variable needs to know about other variable values
Delay expensive tasks(需要耗費大量效能的任務)
比使用 Computed Property 好,因為 lazy 算過一次後就會把結果存下來
Last updated
A variable needs to know about other variable values
Delay expensive tasks(需要耗費大量效能的任務)
比使用 Computed Property 好,因為 lazy 算過一次後就會把結果存下來
Last updated