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


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


类型方法

stride(ofValue:)

当存储在连续内存或 Array<T> 中时,返回从 T 的一个实例开始到下一个实例开始的字节数。

声明

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

返回值

给定值类型的步幅(以字节为单位)。

参数

value

代表要说明的类型的值。

详述

这与增加UnsafePointer<T> 实例时移动的字节数相同。 T 可能具有较低的最小对齐方式,以牺牲运行时性能换取空间效率。结果总是积极的。

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


let x: Int = 100


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


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

可用版本

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

相关用法


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