swift – 懒惰的计算变量

swift – 懒惰的计算变量,第1张

概述我正在尝试制作一个具有惰性计算变量幅度的Vector结构,但我似乎无法找到一种方法来实现它. 这就是我所拥有的: struct Vector { var x: Double = 0.0 { didSet { magnitudeActual = -1.0 } } var y: Double = 0.0 { 我正在尝试制作一个具有惰性计算变量幅度的Vector结构,但我似乎无法找到一种方法来实现它.

这就是我所拥有的:

struct Vector {    var x: Double = 0.0 {        dIDSet {            magnitudeActual = -1.0        }    }    var y: Double = 0.0 {        dIDSet {            magnitudeActual = -1.0        }    }    var magnitudeActual: Double = 0.0    var magnitude: Double {        if magnitudeActual < 0.0 {            magnitudeActual = sqrt(x * x + y * y) //cannot assign to "magnitudeActual" in self        }        return magnitudeActual    }    init() {}    init(_ x: Double,_ y: Double) {        self.x = x        self.y = y    }}

我已经尝试了许多方法来实现这一点,但似乎没有任何工作.另外,一个willGet会很好,但不存在.

解决方法 From the docs:

Modifying Value Types from Within Instance Methods

Structures and enumerations are value types. By default,the propertIEs of a value type cannot be modifIEd from within its instance methods.

However,if you need to modify the propertIEs of your structure or enumeration within a particular method,you can opt in to mutating behavior for that method. The method can then mutate (that is,change) its propertIEs from within the method,and any changes that it makes are written back to the original structure when the method ends. The method can also assign a completely new instance to its implicit self property,and this new instance will replace the existing one when the method ends.

那么,除非执行修改的函数被标记为变异,否则结构不能自行修改.这意味着您需要为属性定义正确的get函数.

var magnitude: Double {mutating get {    if magnitudeActual < 0.0 {        NSLog("Recalc") // just to make sure it's caching the result properly.        magnitudeActual = sqrt(x * x + y * y)    }    return magnitudeActual}}

现在我们可以做到这一点

var v = Vector(3,4)v.magnitude // Recalc 5v.magnitude // 5v.x = 5v.y = 12v.magnitude // Recalc 13
总结

以上是内存溢出为你收集整理的swift – 懒惰的计算变量全部内容,希望文章能够帮你解决swift – 懒惰的计算变量所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1004477.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存