当前位置: 首页>>编程示例 >>用法及示例精选 >>正文


Swift MemoryLayout alignment(ofValue:)用法及代码示例

类型方法

alignment(ofValue:)

返回 T 的默认内存对齐方式。

声明

static func alignment(ofValue value: T) -> Int

返回值

给定值类型的默认内存对齐方式,以字节为单位。该值始终为正。

参数

value

代表要说明的类型的值。

详述

使用不安全指针分配内存时使用类型的对齐方式。

当您有类型而不是实例时,请改用 MemoryLayout<T>.stride 静态属性。


let x: Int = 100


// Finding the alignment of a value's type
let s = MemoryLayout.alignment(ofValue: x)
// s == 8


// Finding the alignment of a type directly
let t = MemoryLayout<Int>.alignment
// t == 8

可用版本

iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+

相关用法


注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 MemoryLayout alignment(ofValue:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。