Arthrex interview question

Explain the differences between a Swift struct and a class.

Interview Answer

Anonymous

14 May 2017

structs are always passed by value and class instances are passed by reference. structs do not inherit properties or behavior from another existing type. structs are preferable if they are relatively small and copy-able.