Booleans
Swift有基本的Boolean 类型,叫做Bool. 布尔值被称为逻辑运算,因为他们只能是true或者false.Swift提供2种Boolean值,一个true,另一个当然是false:
. 1 let
orangesAreOrange=
true
. 2 let
turnipsAreDelicious=
false
orange...
分类:
其他好文 时间:
2014-06-20 10:12:35
阅读次数:
287
这一章相对简单,只对运算符进行简单的举例讲解。
基本运算包括:
一、赋值(=)
例如:
let b = 10
var a = 5
a = b
// a is now equal to 10
二、算法(+ - * /)
例如:
1 +2 // equals 3
5 -3 // equals 2
2 *3 // equals 6
10....
分类:
其他好文 时间:
2014-06-20 09:51:38
阅读次数:
237
0.句末不用打分号1.变量var 常量let,不用指定类型,自动推断2.当需要指定类型时:let
explicitDouble:Double=7 //7.03.+号不能自动把数字变成string,全部用显式转换:let label="The width
is"let width=94let wid....
分类:
其他好文 时间:
2014-06-11 13:11:16
阅读次数:
272
上述代码中,如果可选值为nil,那么判断条件则为false,而且在{}中的代码将会被忽略,如果可选值不为nil,会将该值逐步运算后赋值给let后面的常量,其中逐步运算过程将依据实际的代码块.Switch
语法支持任何类型数据以及各种比较操作,并不局限在整型. let vegetable = "re....
分类:
移动开发 时间:
2014-06-10 00:09:50
阅读次数:
411
泛型函数可以工作于任何类型,这里是一个上面swapTwoInts函数的泛型版本,用于交换两个值:
func swapTwoValues(inout a: T, inout b: T) {
let temporaryA = a
a = b
b = temporaryA
}
swapTwoValues函数主体和swapTwo...
分类:
其他好文 时间:
2014-06-08 15:27:37
阅读次数:
212
今天,不容易弄到一个xcode 6,装上之后感受一把Swift。
Hello World
新建一个工程,看看久违的Hello World
变量与常量
在Swift中变量声明用var,常量的声明用let。
这里和oc和c还是有不一样的地方。
判断
switch
case 4:
case 5:println("5") 会报错...
分类:
其他好文 时间:
2014-06-08 14:51:05
阅读次数:
248
Problem Description
Given a list of phone numbers, determine if it is consistent in the sense that no number is the prefix of another. Let’s say the phone catalogue listed these numbers:
1. Emergenc...
分类:
其他好文 时间:
2014-06-08 10:31:22
阅读次数:
234
Definition
Let be "0" and
be "01". Now (the concatenation of the previous sequence and the one before that).
The infinite Fibonacci word is the limit
We have:
0
01
010
01...
分类:
其他好文 时间:
2014-06-08 09:19:42
阅读次数:
273
Objects and Classes(对象和类)用 class
关键字后面跟一个类名来创建一个class,在一个类中声明 常亮或变量,他存在于当前类的上下文,函数的方法是同样的var numberOfSides = 0
let numberOfSidesLet = 1 func...
分类:
其他好文 时间:
2014-06-08 00:44:09
阅读次数:
383
常量关键字 let变量关键字 var数组和字典 ([])\ () 格式字符串标记
在swift语法中使用let关键字声明常量,例如
let myConstant = 42
使用let声明的常量在编译时候不需要赋值,但是你必须在某个时候给它且只能赋值一次,意味着你可以声明一次,可以在许多地方使用多次。
使用var关键字声明变量,例如...
分类:
其他好文 时间:
2014-06-07 15:47:33
阅读次数:
229