我正在尝试学习swift中的计算属性..并且知道我需要setter来设置计算属性的值。我正试图但卡住了..请帮助我如何使用setter属性设置区域中的值。 ..如果你能告诉我如何使用setter属性以及何时使用它会很棒
class ViewController: UIViewController {
var width : Int = 20
var height : Int = 400
var area: Int{
get{
return width * height
}set(newarea){
area = newarea*10
//these line gives me an warning and area is not set
}
}
override func viewDidLoad() {
super.viewDidLoad()
println("\(width)")
println("\(height)")
println("\(area)")
// gives an error while setting value to computed properties... area = 5000
// for that we need getter and setter properties in area...
area = 490
println("the new area for computed properties is as \(area)")
}
编辑:但是我发现我可以更改其派生的计算属性的其他属性
set(newValue){
// self.area = newValue
width = newValue/10
println("the new width for computed properties is as \(width)")
}
}
但是,如果我想更改计算属性iteself
,该怎么办?答案 0 :(得分:12)
计算属性就是:一个计算值,在你的情况下来自 宽度和高度。属性中没有实例变量 如果存储了值,则无法更改“计算属性本身”。
这没有意义:如果该区域可以设置为不同的值,
getter方法应该返回什么?这个新值或width*height
?
所以很可能你想要一个区域的只读计算属性:
var area: Int {
get {
return width * height
}
}
正如您已经注意到的,setter可以修改其他值 存储属性,例如:
class Rectangle {
var width : Int = 20
var height : Int = 400
var area: Int {
get {
return width * height
}
set(newArea){
// Make it a square with the approximate given area:
width = Int(sqrt(Double(newArea)))
height = width
}
}
}
但即便如此,结果可能会令人惊讶(由于整数舍入):
let r = Rectangle()
r.area = 200
println(r.area) // 196
答案 1 :(得分:9)
我认为你误解了计算属性的概念。根据定义,计算属性是您无法设置其值的属性,因为它是计算出来的。它没有独立存在。计算属性中setter的目的不是设置属性的值,而是设置计算计算属性的其他属性的值。以广场为例。它的边长是一个var属性s,该区域是一个计算属性,其getter返回s * s,其setter设置为newValue(新区域)的平方根。设定者不设定区域。它设置下次访问区域属性时计算区域的边长。
答案 2 :(得分:0)
Delete edge (v0,v1) % Not asking you to delete the nodes.
Add node v.
Add edges (v0,v) and (v,v1)