码迷,mamicode.com
首页 > 其他好文 > 详细

Swift方法

时间:2014-06-30 23:26:49      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:http   使用   line   .net   res   app   

Swift 中的方法是与特定类型(类和结构体)相关的函 数。

实例方法 隶属于某个特定类型(类或结构体)实例函数。 class Counter{

 

var count = 0

funcincrement() {

count++

}

funcincrementBy(amount: Int) {

count += amount

}

func reset() {

count = 0

}

}

let counter = Counter()

// the initial countervalue is 0 counter.increment()

// the counter‘s valueis now 1 counter.incrementBy(5)

// the counter‘s valueis now 6 counter.reset()

// the counter‘s valueis now 0

 

使用 self

 

this 代表当前对象。 实例:

struct Point {

var x =0.0, y = 0.0

func isToTheRightOfX(x:Double) -> Bool {

 return self.x >

}

}

let somePoint = Point(x: 4.0, y: 5.0)

if somePoint.isToTheRightOfX(1.0) {

println("This point is to the right of theline where x

== 1.0")

}

 

 

 

Swift交流讨论论坛论坛:bubuko.com,布布扣http://www.cocoagame.net

欢迎加入Swift技术交流群:362298485

 

Swift方法,布布扣,bubuko.com

Swift方法

标签:http   使用   line   .net   res   app   

原文地址:http://www.cnblogs.com/iOS-Blog/p/3816012.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!