gpt4 book ai didi

swift - 是否可以使用类 Label 类型声明 Computed 属性和 Observers?

转载 作者:行者123 更新时间:2023-11-28 11:03:41 25 4
gpt4 key购买 nike

我是 swift 的新手,任何人都可以帮助我理解

目的是什么?我应该使用class标签类型!

是否可以使用 class Label 类型声明 Computed 属性和 Observers

两者兼而有之?

谢谢

最佳答案

类型属性 可以使用staticclass 关键字创建

  1. 计算属性 可以使用 class 以及 static 关键字创建。
  2. Property observers 不允许使用 class 关键字。它们只能与 static 一起使用。

示例:

class First
{
class var x : Int{
return 3
}

static var y : Int{
return 2
}

// error: class stored properties not supported in classes
// class var z = 10 {
// willSet{
// print(newValue)
// }
// }

static var w = 30 {
willSet{
print(newValue)
}
}
}

关于swift - 是否可以使用类 Label 类型声明 Computed 属性和 Observers?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39601223/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com