class Person { var age: Int = 1 // 8 字节 var name: String = "abc" // 16 字节 } print(MemoryLayout<Int>.size) -> 8 print(MemoryLayout<String>.size) -> 16