如果我们用所有可选值声明结构,那么swift中结构的大小是多少?

时间:2018-02-15 10:26:21

标签: ios swift structure

例如,我创建了一个包含所有可选值的结构。那么swift中的结构大小是多少。我们怎样才能在swift中计算结构的大小?

1 个答案:

答案 0 :(得分:0)

您可以使用此代码。

struct Structure {
    //Some properties here
}

let size = MemoryLayout<Structure>.size