swift willSet didSet

前端之家收集整理的这篇文章主要介绍了swift willSet didSet前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
class square {

varwidth:Int{

willSet{

println("width will set old=\(width) new=\(newValue)");

}

didSet{

("width did set new=width) old=oldValue)");

}

}

init(){

width=1;

}

}


vars:square=square();

@H_301_81@ s.width=2;

原文链接:https://www.f2er.com/swift/326944.html

猜你在找的Swift相关文章